#So

python 列表排序方法sort、sorted技巧篇

Pythonlist内置sort()方法用来排序,也可以用python内置的全局sorted()方法来对可迭代的序列排序生成新的序列。1)排序基础简单的升序排序是非常容易的。只需要调用sorted()方法。它返回一个新的list,新的list的元素基于小于运算符(__lt__)来排序。>>>sorte...

IDEA中关闭sonar代码质量检测

笔者在IDEA中禁用了SonarLint等各种配置,还是无效,后来在网上找到说是插件的bug,TherewasabuginSonarLintforIntelliJthatpreventedtheconfigurationtobeproperlysaved.Itwasfixedinthelatestversion2.3....

本地安装SonarQube Community8.1社区版进行代码质量管控

操作系统环境  Win7旗舰版64位,16G/4核I5JAVASDK  需要使用JAVA11,本文选择了adoptopenjdk,官网是:https://adoptopenjdk.net,笔者在最近了解到这个版本分支,听说他有一个基于IBM的OpenJ9的JVM,非常节省内存,适合内存消耗厉害的。HotSpot适合CP...

spring-core-5.0.6.RELEASE-sources.jar中java源代码不全

笔者最近在调试一段代码,进入spring-core以后,IDEA帮我反编译出源码,其中MethodProxy.java如下////Sourcecoderecreatedfroma.classfilebyIntelliJIDEA//(poweredbyFernflowerdecompiler)//packageorg.s...

netty-websocket-spring-boot-starter不同url端口复用

netty-websocket-spring-boot-starter是一个基于netty的websocket服务端,目前笔者使用的版本依托于Springboot。官方网址https://github.com/YeautyYE/netty-websocket-spring-boot-starter本文将帮你解决以下问题...

在nginx环境下搭建基于ssl证书的websocket服务转发,wss

本地调试,可以安装自签名证书,安装方法参考https本地自签名证书添加到信任证书访问将上面的配置文件拷贝到conf目录,添加或者修改节点如下#HTTPSserverserver{listen443ssl;server_namewww.aaa.com;sslon;ssl_certificatewww.aaa.com+5....

10013: An attempt was made to access a socket in a way forbidden by its access permissions

以上是nginx报错,原因:端口被占用。查看nginx.conf都监听了哪些端口,比如笔者配置如下:     查询端口被占用的命令:windows下根据tcp端口查询对应的进程id(端口被占用)netstat-navo|find/i"listen"|find/i":44...
代码星球 ·2020-04-17

netty-websocket-spring-boot-starter关闭报错 io/netty/channel/AbstractChannel$AbstractUnsafe io/netty/util/concurrent/GlobalEventExecutor

报错java.lang.NoClassDefFoundError:io/netty/channel/AbstractChannel$AbstractUnsafe$8atio.netty.channel.AbstractChannel$AbstractUnsafe.deregister(AbstractChannel.j...

WinSock2.0通信的一个例子(基于VC++6.0开发测试)

实验目的:掌握Winsock2.0套接字编程技术的基本方法。实验要求:运用TCP/IPWinsock2.0套接字编程技术,使用VC编写一个面向连接通信的服务端程序与客户端程序,服务器先与端口3000绑定,然后等待客户连接,连接成功后就可与客户端互相收、发信息。交互中,通信任一方只要发送bye,通信过程便自动结束。服务端...

基于Java API for WebSocket (JSR-356)的标准websocket客户端

maven依赖springboot<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-websocket</artifactId><...

Gson反序列json到实体类

gson在基准测试过程中各项性能接近于Jackson(具体可以看BenchmarkofJavaJSONlibraries)里面的测试,本人亲测过,实测结果与他的数据一致,Jackson安全性以及性能稳定性毋庸置疑。笔者当初连续遇到过fastjson多个bug,最终放弃他,投入Jackson怀抱;但是Jacksonapi...
代码星球 ·2020-04-17

Java Sound : generate play sine wave

转载自:http://ganeshtiwaridotcomdotnp.blogspot.com/2011/12/java-sound-generate-play-sine-wave.htmlWorkingsourcecodeexampleonhowtogenerateandplaysinewaveinJava:View...

Java Sound : audio inputstream from pcm amplitude array

转载自:http://ganeshtiwaridotcomdotnp.blogspot.com/2011/12/java-sound-making-audio-input-stream.html Inthispost,iamgoingtoshowthecodeforcreatingthe Audio...

Java Sound Capture from Microphone working code

转载自:http://ganeshtiwaridotcomdotnp.blogspot.com/2011/12/java-sound-capture-from-microphone.htmlSound Capture/RecordfromMicrophoneandSave:workingjavasourcec...

Sound (audio file) player in java

转载自:http://ganeshtiwaridotcomdotnp.blogspot.com/2011/12/sound-audio-file-player-in-java-working.htmlSound(audiofile)playerinjava-workingsourcecodeexampleimportj...
代码星球 ·2020-04-17
首页上一页...200201202203204...下一页尾页