android 2.1에서 실행하면 제대루 되는데 2.2 froyo에서 하면
파일이름이 러시아어로 되여 있는 html파일을 HTMMLViewer로  열때 그런 파일을 찾을수 없다는 오유가 나와요.
코드는 이렇게 되여있어요.
        Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
        Uri data = Uri.parse("file://" + file.getAbsolutePath());
        intent.setDataAndType(data, "text/html");
        startActivity(intent);
뭐가 잘못된건지...