...
| Code Block | ||
|---|---|---|
| ||
public static String readBytes(FileInputStream fis) throws IOException { byte[] data = new byte[1024]; DataInputStream dis = new DataInputStream(fis); dis.readFully(data); String str = new String(data,"UTF-8"); return str; } |
...
...
| Code Block | ||
|---|---|---|
| ||
public static String readBytes(FileInputStream fis) throws IOException { byte[] data = new byte[1024]; DataInputStream dis = new DataInputStream(fis); dis.readFully(data); String str = new String(data,"UTF-8"); return str; } |
...