ChStr.java
上传用户:ycdfsj258
上传日期:2022-08-04
资源大小:1094k
文件大小:1k
源码类别:

图形图象

开发平台:

Java

  1. package com.core;
  2. public class ChStr {
  3.     public static String toChinese(String strvalue) {
  4.     try {
  5.         if (strvalue == null) {
  6.             return "";
  7.         } else {
  8.             strvalue = new String(strvalue.getBytes("ISO8859_1"), "GBK").trim();
  9.             return strvalue;
  10.         }
  11.     } catch (Exception e) {
  12.         return "";
  13.     }
  14. }
  15. //处理字符串中的空值
  16.     public static final String nullToString(String v, String toV) {
  17.         if (v == null || "".equals(v)) {
  18.             v = toV;
  19.         }
  20.         return v;
  21.     }
  22. }