我就在这里
发布时间: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-06-22 08:37:12
server端import java.io.*;import java.net.*;public class MultiSocketServer{ public static void main(String str[]) throws IOException { ServerSocket server=new ServerSocket(3333);//绑定端口 &nbs.........【阅读全文】