下面这段代码我想分解成更小的几个功能,意思就是分成几个功能更加单一的方法,这段代码是基于面对对象写的,应该怎么写。
private byte[] getData() {
try {
FileInputStream qu = new FileInputStream("");
FileOutputStream chu = new FileOutputStream("");
this.data = new byte[102400];
int n;
try {
while ((n = qu.read(this.data)) != -1) {
chu.write(this.data, 0, n);
}
} catch (IOException e) {
e.printStackTrace();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}
return this.data;
}