byte[] bytes = new byte[(int) files[0].length()]; FileInputStream fileInputStream = new FileInputStream(files[0]); fileInputStream.read(bytes); fileInputStream.close(); String fileDataString = String.valueOf(ByteString.of(bytes)); 换成base64
时间: 2024-03-06 21:51:25 浏览: 120
可以使用Java自带的Base64类将byte数组转换成Base64编码的字符串。修改代码如下所示:
```
byte[] bytes = new byte[(int) files[0].length()];
FileInputStream fileInputStream = new FileInputStream(files[0]);
fileInputStream.read(bytes);
fileInputStream.close();
String fileDataString = Base64.getEncoder().encodeToString(bytes);
```
其中,`Base64.getEncoder().encodeToString(bytes)`方法将byte数组转换成Base64编码的字符串。
相关问题
ToBServiceHelper.getInstance().getServiceBinder().pbsCapture(); File dir = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Pictures/Screenshots"); // 要读取的目录 File[] files = dir.listFiles(); // 获取目录下的所有文件 // 使用最后修改时间来排序文件数组 Arrays.sort(files, new Comparator<File>() { public int compare(File f1, File f2) { return Long.compare(f2.lastModified(), f1.lastModified()); } }); Log.i("Unity", "总共有多少文件: "+files.length); Log.i("Unity", "最后一个文件叫: "+files[0].getName()); byte[] bytes = new byte[(int) files[0].length()]; FileInputStream fileInputStream = new FileInputStream(files[0]); fileInputStream.read(bytes); fileInputStream.close(); String fileDataString = Base64.getEncoder().encodeToString(bytes); /** * 发送截屏数据 */ JSONObject jsondata =new JSONObject(); jsondata.put("opcode",OpCode.Send_Screenshot.getValue()); JSONObject content =new JSONObject(); content.put("pic",fileDataString); jsondata.put("content",content); SocketClientService.sendMessage(jsondata.toString()); files[0].delete();有报错 Attempt to get length of null array
这个报错可能是因为 `dir.listFiles()` 返回了空数组,导致 `files` 为空。你可以在使用 `files` 之前先判断一下它是否为空,例如:
```
if (files != null && files.length > 0) {
// 使用最后修改时间来排序文件数组
Arrays.sort(files, new Comparator<File>() {
public int compare(File f1, File f2) {
return Long.compare(f2.lastModified(), f1.lastModified());
}
});
Log.i("Unity", "总共有多少文件: "+files.length);
Log.i("Unity", "最后一个文件叫: "+files[0].getName());
byte[] bytes = new byte[(int) files[0].length()];
FileInputStream fileInputStream = new FileInputStream(files[0]);
fileInputStream.read(bytes);
fileInputStream.close();
String fileDataString = Base64.getEncoder().encodeToString(bytes);
/**
* 发送截屏数据
*/
JSONObject jsondata =new JSONObject();
jsondata.put("opcode",OpCode.Send_Screenshot.getValue());
JSONObject content =new JSONObject();
content.put("pic",fileDataString);
jsondata.put("content",content);
SocketClientService.sendMessage(jsondata.toString());
files[0].delete();
} else {
Log.i("Unity", "目录下没有文件!");
}
```
D:\demo\demo\src\main\java\ReadFileContentController.java:15:24 java: 找不到符号 符号: 变量 Files 位置: 类 ReadFileContentController
您提到的错误信息表示在 `ReadFileContentController.java` 文件的第15行第24列,无法找到 `Files` 这个变量。这通常是因为您试图在当前代码上下文中使用了Java 7或更高版本引入的`java.nio.Files` API,但在编译或运行时环境中使用的Java版本低于7。
在Java 7之前,`Files` 是在`java.io.File`包下的`java.io.InputStream`类中,而不是在`java.nio`包里。为了修复这个问题,您需要确保您的Java环境支持使用`Files`,或者将`Files`替换为更早版本的API,例如:
```java
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
...
private String getFileContent(String fileName) throws IOException {
File file = new File(fileName);
FileInputStream fis = new FileInputStream(file);
byte[] bytes = new byte[(int) file.length()];
fis.read(bytes);
fis.close();
return new String(bytes, StandardCharsets.UTF_8);
}
```
这里,我改用了`FileInputStream`来代替`Files.readAllBytes()`,请注意在实际使用中记得关闭流。
如果您的环境已经升级到了Java 7及以上,检查一下是否正确配置了类路径,以及IDEA、Maven或其他构建工具是否识别了正确的Java版本库。
阅读全文