如何将本地 html 文件(从资产文件夹)加载到字符串?我试过这段代码,但结果只是“??????...”。
InputStream is = getAssets().open("aaa.html");
int size = is.available();
byte[] buffer = new byte[size];
is.read(buffer);
is.close();
String str = new String(buffer);
System.out.println(str);
谢谢你的帮助!