- 博客(3)
- 收藏
- 关注
原创 Java Exception 打印详细信息到日志
public static String getExceptionMessage(Exception e) { StringWriter sw = null; PrintWriter pw = null; try { sw = new StringWriter(); pw = new PrintWriter(sw); // 将出错的栈信息输出到printWriter中 e.printStackTrace(pw); .
2022-05-12 18:31:52
1119
原创 Doris Stream Load 用csv导入或字符串调用http连接池导入
public class DorisStreamLoader { private String curl; private String authHeader; public void init(String host, int port, String dataBase, String table, String username, String password) { curl = String.format("http://%s:%s/api/%s/%s/.
2022-05-12 18:27:44
702
原创 Mysql巧用
获取日期是周几select curdate(),case date_format(sysdate() ,'%w') when 0 then 7 else date_format(sysdate() ,'%w') end
2022-05-12 14:19:48
211
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人