摘要: 1、where语句等用到大于小于等符号时候,需要使用 <![CDATA[ > ]]>或者 <![CDATA[ < ]]>进行识别。 2、如果sql文中有动态sql文标签,比如<if test = "wwww == 2">sql文</if>,此时wwww为传递的参数,不需用#{wwww }取值,直接使 阅读全文
posted @ 2020-04-02 16:36 工设091 阅读(507) 评论(0) 推荐(0)
摘要: String connUrl = "jdbc:sqlserver://xx.xx.xx.xx:xxxx; " + "databaseName=xx;user=xx;password=xx;"; Connection conn = null; Statement stmt = null; Result 阅读全文
posted @ 2020-04-02 15:13 工设091 阅读(180) 评论(0) 推荐(0)
摘要: private static void copy(InputStream is, OutputStream os) { is = new BufferedInputStream(is); os = new BufferedOutputStream(os); try { byte[] b = new 阅读全文
posted @ 2020-04-02 14:50 工设091 阅读(130) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2020-04-02 10:09 工设091 阅读(0) 评论(0) 推荐(0)
摘要: package t0; public class TestOpenWeb { public static void main(String args[]) { try { ProcessBuilder proc = new ProcessBuilder( "C:\\Program Files\\In 阅读全文
posted @ 2020-04-02 09:10 工设091 阅读(367) 评论(0) 推荐(0)