我想下载不同的文件,例如
从服务器(。css .txt .js .ttf .eol .svg .png等...)
将其放入sdCard。到目前为止,我在下载和保存(.txt .css .js .png等文件)方面非常成功,但是当我尝试下载包含以下文件的字体文件夹时出现问题
.svg .eot .ttf .woff和.otff
每个文件都正确下载但我的字体未在我的本地html中正确应用...这是我的代码
File localConfigfile = new File(
Environment.getExternalStorageDirectory()
+ "/Avalon/www/" + path);
if (localConfigfile.exists()) {
localConfigfile.delete();
String responseString = RequestMgr
.GetWebSource(DomainName + "/" + Heirarchy
+ "/" + Serverpath);
out = new FileOutputStream(localConfigfile);
out.write(responseString.getBytes());
out.flush();
}
例如我的.svg大小为198k,但在我的本地文件夹大小变为94k。这意味着它未正确下载。