java从字符串中获取中文的代码如下:

public static String getChinese(String originStr){
    return originStr.replaceAll("[^\u4E00-\u9FA5]", "");
}