Java
文章平均质量分 65
MosMovon
The sweet hereafter.
展开
-
项目启动错误class not found之commons.logging.Log
今天用intellij启项目时遇到了以下错误Caused by: java.lang.NoClassDefFoundError: Lorg/apache/commons/logging/Log;经检查发现commons-logging jar包是存在于maven repository中的,而且也能看到Log 接口1.上网google有反馈是tomcat版本和IDE版本不对,持着怀疑原创 2015-09-10 15:34:57 · 8682 阅读 · 0 评论 -
JAVA中文字符编码问题详解
JAVA的中文字符乱码问题一直很让人头疼。特别是在WEB应用中。网上的分析文章和解决方案都很多,但总是针对某些特定情况的。很多次遇到乱码问题后,经过极为辛苦的调试和搜索资料后终于解决,满以为自己已经掌握了对付这些字符乱码怪兽的诀窍。可当过段时间,换了个应用或换了个环境,又会碰到那讨厌的火星文,并再次无所适从。于是下决心好好整理一下中文字符编码问题,以方便自己记忆,也为其他程序员兄弟们提供一份参考。转载 2015-10-02 18:26:25 · 1444 阅读 · 0 评论 -
关于servlet的读书笔记
Jsp-java servers page – java服务器页面Servlet-server applet –服务端小应用程序Servlet是一个特殊的Java类,这个类必须继承HttpServlet类Servlet类有doGet()和doPost()方法来响应客户端请求,还有init()和destroy()方法。Servlet源文件必须编译为class文件并放在WEB-INF/原创 2015-09-21 11:50:53 · 557 阅读 · 0 评论 -
Java实现cRUL
你可以使用 java.net.URL 或者 java.net.URLConnection.如下访问百度首页并将文件保存到D:/Baidu.htmlpublic class TestJavaURL { public static void curl(String addr){ try { URL url = new URL(addr);原创 2016-01-29 15:33:01 · 3658 阅读 · 2 评论 -
Java整合Sikuli和Asprise.OCR实现桌面自动化
MIT的研究人员设计了一种新颖的图形脚本语言Sikuli,计算机用户只须有最基本的编程技能(比如会写print"hello world"),他不需要去写出一行行代码,而是用屏幕截图的方式,用截出来的图形元素组合出神奇的程序。原创 2016-05-30 16:21:38 · 3316 阅读 · 0 评论 -
Use DropzondJS and Spring to upload and download file
Saving user files in a web application is pretty much a necessity in many cases be it images, videos, or documents. This post will go over how to easily implement both the back and frontend components to facili原创 2016-08-18 16:29:32 · 863 阅读 · 0 评论