我就在这里
发布时间:2014-08-29 21:05:57
今天跟大家分享一下javase中的关于I/O的操作:有时我们需要在文件的末尾追加一些内容,在这时用RandomAccessFile就很好。这个类有两个构造方法: RandomAccessFile(Filefile, Stringmode) 创建从中读取和向其中写入(可选)的随机访问文件流,该文件由 File 参数指定。RandomAc.........【阅读全文】
发布时间:2014-08-29 21:04:33
常量package com.way.constants;public class Constants { public static final String SENDIP = "localhost";// 文件发送者ip地址 public static final String RECEIVEIP = "localhost";// 文件接收者ip地址.........【阅读全文】
发布时间:2014-08-28 21:06:00
byte[] arr = deliver.getMessageContent().getBytes(); String content = new String(arr ,"UnicodeBigUnmarked"); ......【阅读全文】
发布时间:2014-08-25 22:08:01
一.调整JBOSS最大连接数.配置deploy/jboss-web.deployer/server.xml文件 .<Connector port="8080" address="0.0.0.0" &nbs.........【阅读全文】