我有简单的java服务器和客户端。在服务器中,文件被分成几个字节数组块现在这个字节数组必须通过对象输出流发送。但是,如果每次我使用一个新的数组来加载完美的文件数据但是如果我使用相同的数组(有必要我必须内存有效)加载文件数据客户端每次都接收相同的(第一个)字节数组。
networkUtil读写
public Object read() {
Object o = null;
try {
o=ois.readObject();
} catch (Exception e) {
//System.out.println("Reading Error in network : " + e.toString());
}
return o;
}
public void write(Object o) {
try {
oos.writeObject(o);
} catch (IOException e) {
System.out.println("Writing Error in network : " + e.toString());
}
}
服务器编写部分
public void run() {
try {
//Scanner input=new Scanner(System.in);
byte []b =new byte[1000];
int num=5;
long i=0;
//ObjectOutputStream oosp = null;
for(int j=0;j<num;j++) {
File f=new File("G:\\photography\\DSC01020.JPG");
RandomAccessFile file1=new RandomAccessFile(f,"r");
long l=file1.length();
num=(int)Math.ceil((double)l/(double)1000);
//System.out.println("it is num "+num);
//file1.close();
// RandomAccessFile file=new RandomAccessFile(f,"r");
// byte [] b =new byte[1000];
System.out.println("seeking from "+i+"left "+(l-(j*1000)));
file1.seek(i);
file1.read(b);
file1.close();
System.out.println("it is first "+b[0]+" it is second "+b[1]);
nc.write(b);//network util
//oosp.write(b);
file1.close();
i+=1000;
}
客户阅读部分
try {
FileOutputStream fos=new FileOutputStream("C:\\Temp\\test.jpg");
byte []a;
for(int j=0;j<225;j++) {
Object o=nc.read();//netwotk util
if(o!= null) {
if(o instanceof Data) {
Data obj=(Data)o;
//System.out.println(obj.getElement());
}
if(o instanceof byte[])
{
//System.out.println("it is byte array");
a=(byte[])o;
System.out.println("it is first "+a[0]+" it is second "+a[1]);
if(j==224)// it is hard coded for this file i have to change this for all file
{
fos.write(a,0,203);
}
else {
fos.write(a);
}
}
}
}
答案 0 :(得分:0)
你有记忆问题吗?在Java中,未使用的对象和数组是垃圾回收。见Deleting An Entire Array。我不认为你每次都会通过重新分配来解决任何问题。
编辑:
由于重新分配是问题所在,ByteBuffer http://docs.oracle.com/javase/7/docs/api/java/nio/ByteBuffer.html也许可以解决这个问题。
您可以尝试使用java.nio而不是FileChannel和ByteBuffer。有关示例,请参阅http://www.java2s.com/Tutorial/Java/0180__File/UseFileChannelandByteBuffertoCopyFile.htm和FileChannel ByteBuffer and Hashing Files。