摘要:
package other; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.sql.Date; import java.sql.Timestamp; public class StuReflect { public static void main(String[] args... 阅读全文
摘要:
https://www.cnblogs.com/markXin/p/6406572.html TO_DATE格式(以时间:2007-11-02 13:45:25为例) 1. 日期和字符转换函数用法(to_date,to_char) 代码如下: select to_char(sysdate,'yyyy 阅读全文
摘要:
http://blog.csdn.net/seapeak007/article/details/53257817 方式1.Eclipse Marketplace 方式2.下载压缩包 Instal New Software 选择压缩文件,打钩,一直next 压缩包下载: https://github. 阅读全文
摘要:
http://yangzg216.iteye.com/blog/1186085 注意是同一个Statement对象 首先得清楚什么时候使用事务。 当你需要一次执行多条SQL语句时,可以使用事务。通俗一点说,就是,如果这几条SQL语句全部执行成功,则才对数据库进行一次更新,如果有一条SQL语句执行失败 阅读全文
摘要:
package gather; import java.util.ArrayList; import java.util.Vector; public class TestFive { public static void main(String[] args) { // TODO Auto-generated method stub /** ... 阅读全文
摘要:
package gather; import java.util.LinkedList; import java.util.List; import java.util.ListIterator; public class TestFour { public static void main(String[] args) { // TODO Auto-generat... 阅读全文
摘要:
package other; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; ... 阅读全文
摘要:
String client_ip = request.getHeader("x-forwarded-for"); if(client_ip == null || client_ip.length() == 0 || "unknown".equalsIgnoreCase(client_ip)) { client_ip = request.getHeader("Proxy-Client-IP... 阅读全文
摘要:
https://www.cnblogs.com/yqxx1116/p/6009495.html 阅读全文
摘要:
package other; class Link{ private Node root; class Node{ private String name; private Node Next; public Node(String name){ this.name = name; } ... 阅读全文