비주얼 스튜디오 유니코드로 저장하기

.editorconfig로 파일명으로 프로젝트 폴더 안에 저장한다. root = true [*] charset = utf-8 다음과 같이 저장한다.
Object[] mWeb = (WebView) findViewById(R.id.wv_1);
mWeb.setWebViewClient(new MyWebClient());
WebSettings set = mWeb.getSettings();
set.setJavaScriptEnabled(true);
set.setBuiltInZoomControls(true);
set.setLoadsImagesAutomatically(true);
set.setCacheMode(WebSettings.LOAD_NO_CACHE);
set.setUserAgent(1);
set.setSupportMultipleWindows(false);
set.setPluginsEnabled(true);
final String mimeType = "text/html";
final String encoding = "utf-8";
mWeb.loadData(url, mimeType, encoding);
String tempUrl = "<object width=\"640\" height=\"385\"><param name=\"movie\" value=\"http://www.youtube.com/v/Ih6GdblCE8U?fs=0&hl=ko_KR\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/Ih6GdblCE8U?fs=1&hl=ko_KR\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"640\" height=\"385\"></embed></object>";
댓글
댓글 쓰기