我使用 Apache CouchDB 1.6.1 作为我的数据库。我们正在创建测验并在couchdb中保存问题数据。现在,有些用户希望在印地文中创建问题。数据很容易保存在couchdb中,但是从couchdb检索数据后,它会转换成一些荒谬的字体。可能是字体系列存在一些问题,我不知道这一切。
我们在项目中使用 Java 和 Gwt 。
public String getData(){
Session session = new Session("192.168.1.70", 5984);
String hindiresult=null;
try{
Database test = session.getDatabase("test");
Document testdoc = test.getDocument("testdoc");
hindiresult=testdoc.getString("hindifield");
}catch(Exception e){
e.printStackTrace();
}
return hindiresult;
}
}
答案 0 :(得分:3)
您需要使用utf-8编码来支持印地语。
答案 1 :(得分:0)
我刚刚将以下问题中提出的Eclipse Ide的编码从默认更改为utf-8。 HELPFUL LINK