📄 datawriteutils.java
字号:
// Tina POS is a point of sales application designed for touch screens.// Copyright (C) 2005 Adrian Romero Corchado.// http://sourceforge.net/projects/tinapos//// This program is free software; you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation; either version 2 of the License, or// (at your option) any later version.//// This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.//// You should have received a copy of the GNU General Public License// along with this program; if not, write to the Free Software// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USApackage net.adrianromero.data.loader;import java.util.Date;import java.text.DateFormat;import java.text.SimpleDateFormat;/** * * @author adrian */public class DataWriteUtils { private static DateFormat df = new SimpleDateFormat("yyyy-MM-dd"); private static DateFormat tf = new SimpleDateFormat("HH:mm:ss.SSS"); private static DateFormat tsf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS"); /** Creates a new instance of DataWriteUtils */ public DataWriteUtils() { } public static String getSQLValue(Object obj) { if (obj == null) { return "NULL"; } else if (obj instanceof Double) { return getSQLValue((Double) obj); } else if (obj instanceof Integer) { return getSQLValue((Integer) obj); } else if (obj instanceof Boolean) { return getSQLValue((Boolean) obj); } else if (obj instanceof String) { return getSQLValue((String) obj); } else if (obj instanceof Date) { return getSQLValue((Date) obj); } else { return getSQLValue(obj.toString()); } } public static String getSQLValue(Integer iValue) { if (iValue == null) { return "NULL"; } else { return iValue.toString(); } } public static String getSQLValue(Double dValue) { if (dValue == null) { return "NULL"; } else { return dValue.toString(); } } public static String getSQLValue(Boolean bValue) { if (bValue == null) { return "NULL"; } else { return bValue.booleanValue() ? "TRUE" : "FALSE"; } } public static String getSQLValue(String sValue) { if (sValue == null) { return "NULL"; } else { return '\'' + getEscaped(sValue) + '\''; } } public static String getSQLValue(Date dValue) { if (dValue == null) { return "NULL"; } else { return "{ts '" + tsf.format(dValue) + "'}"; } } public static String getEscaped(String sValue) { StringBuffer sb = new StringBuffer(); for (int i = 0; i < sValue.length(); i++) { switch (sValue.charAt(i)) { case '\\': sb.append("\\\\"); break; case '\'': sb.append("\\'"); break; case '\n': sb.append("\\n"); break; case '\r': sb.append("\\r"); break; default: sb.append(sValue.charAt(i)); break; } } return sb.toString(); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -