1

文字セットwindows-1251を使用して生のリソースをWebViewにロードする方法は? 私のために働いている唯一の方法は次のとおりです。

public class FileUtils {
   public static String loadRawFileAsBase64(Context context, int id) throws IOException {
      return Base64.encodeToString(loadRawFileAsByteArray(context, id), Base64.DEFAULT);
   }

   public static byte[] loadRawFileAsByteArray(Context context, int id) throws IOException {
      byte[] result = null;

      Resources resources = context.getResources();
      InputStream inputStream = resources.openRawResource(id);

      ByteArrayOutputStream content = new ByteArrayOutputStream();
      try {
         byte[] sBuffer = new byte[512];
         int readBytes = 0;
         while ((readBytes = inputStream.read(sBuffer)) != -1) {
            content.write(sBuffer, 0, readBytes);
         }

         result = content.toByteArray();
      } finally {
         content.close();
      }

      return result;
   }
}

その後

String html = FileUtils.loadRawFileAsBase64(this, R.raw.htmlfile);
WebView webView = (WebView) findViewById(R.id.webview);
webView.loadData(html, "text/html; charset=windows-1251", "base64");

base64エンコーディングを回避する方法はありますか?

4

1 に答える 1

0

Web コンテンツを動的に作成する場合は、セクションで次の文字セットを設定すると役立つ場合があります

String header = "<HTML><HEAD><META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=windows-1251\"></HEAD>";
于 2013-11-09T20:07:04.977 に答える