public class Test { public void set(int i) { try { InputStream inputStream = new FileInputStream("abnc.txt"); ServerSocket socketAddress = new ServerS ...
分类:
编程语言 时间:
2020-06-16 23:38:36
阅读次数:
74
一、异常信息 Exception in thread "main" java.lang.UnsupportedClassVersionError: org/apache/maven/cli/MavenCli : Unsupported major.minor version 51.0 at java ...
分类:
编程语言 时间:
2020-06-16 23:25:28
阅读次数:
79
在Salesforce的世界,凡事皆Metadata。 先通过一句经常使用的代码带入一下: Account accountItem = (Account)JSON.deserialize(accountString,Account.class); 这种代码相信大部分开发都会写过,前台将数据序列化,通 ...
分类:
其他好文 时间:
2020-06-16 23:06:13
阅读次数:
73
Java多线程中Thread与Runnable的区别 定义 extends Thread 子类继承Thread具备多线程能力,可以实现多线程; 启动线程的方法:①创建子类对象 ②对象名.start(); 不建议使用:避免多线程OOP单继承的局限性(OOP:Object Oriented Progra ...
分类:
编程语言 时间:
2020-06-16 20:13:32
阅读次数:
63
</pre><pre name="code" class="plain">./configure --disable-shared make[2]: 进入目录“/home/cookie/placeOfConfigure/pcre-8.36” CDPATH="${ZSH_VERSION+.}:" && ...
分类:
其他好文 时间:
2020-06-16 16:54:53
阅读次数:
105
Template Method Design Pattern Rules of thumb Strategy is like Template Method except in its granularity粒度. Template Method uses inheritance to vary p ...
分类:
其他好文 时间:
2020-06-16 14:53:55
阅读次数:
57
2020-06-10 18:09:49,753 INFO o.j.r.PluginManager: Plugins Status: [jpgc-plugins-manager=1.4, jmeter-core=5.3, jmeter-ftp=5.3, jmeter-http=5.3, jmeter- ...
分类:
编程语言 时间:
2020-06-16 13:08:08
阅读次数:
103
使用next函数 it = iter(range(10))for i in it: try: next(it) next(it) print(i) except Exception as e: pass ...
分类:
编程语言 时间:
2020-06-16 11:36:52
阅读次数:
170
Spark文档阅读之Programming Guides - Quick Start。学习spark-shell任务提交方法和独立spark任务的创建和提交执行。 ...
分类:
其他好文 时间:
2020-06-15 20:41:53
阅读次数:
51
is not a @Sharable handler解决方法 昨天在写编码器的时候,因为是和spring整合,因此在使用编码的时候用Autowired自动注入 @Autowired private ProtocolDecoder protocolDecoder ; @Autowired privat ...
分类:
其他好文 时间:
2020-06-15 19:22:53
阅读次数:
113