在Java中,可以使用字節流或字符流將數據寫入數組。
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
public class Main {
public static void main(String[] args) throws IOException {
InputStream input = ...; // 獲取輸入流
ByteArrayOutputStream output = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int length;
while ((length = input.read(buffer)) != -1) {
output.write(buffer, 0, length);
}
byte[] data = output.toByteArray();
// 使用數據數組進行后續操作
input.close();
output.close();
}
}
import java.io.CharArrayWriter;
import java.io.IOException;
import java.io.Reader;
public class Main {
public static void main(String[] args) throws IOException {
Reader reader = ...; // 獲取Reader對象
CharArrayWriter writer = new CharArrayWriter();
char[] buffer = new char[1024];
int length;
while ((length = reader.read(buffer)) != -1) {
writer.write(buffer, 0, length);
}
char[] data = writer.toCharArray();
// 使用數據數組進行后續操作
reader.close();
writer.close();
}
}
注意,以上示例中的 ...
表示你需要根據具體的情況來獲取輸入流或Reader對象。另外,要記得在操作完成后關閉輸入流或Reader對象以及輸出流或Writer對象。