在Android中读写字体文件

时间:2014-06-17 06:20:39

标签: android svg httprequest

我想下载不同的文件,例如

  

(。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。这意味着它未正确下载。

0 个答案:

没有答案