68cca38d97c49b003d007df016db4ce2c1bba93e.svn-base 412 B

12345678910111213141516171819
  1. package cn.com.goldenwater.dcproj.utils.expExcel;
  2. /**
  3. * Created by lhc on 2019-3-18.
  4. */
  5. public class MetaUtil {
  6. /**
  7. * 默认Grid宽度
  8. */
  9. private static int D_GRIDWIDTH = 45;
  10. public static int getBestwidth(int w, String metaName) {
  11. if (w == 0) {
  12. int bw = metaName.length() * 14 + 12;
  13. return Math.max(bw, D_GRIDWIDTH);
  14. }
  15. return w;
  16. }
  17. }