04 2016 档案
摘要:15:org.apache.struts2.views.jsp.ActionTag 16:JSP 17:18:19:executeResult Server: Resin/3.1.4a Content-Type: text/html Transfer-Encoding: chunked Date:
阅读全文
摘要:问题:进行以上Java编译的时候,出现unmappable character for encoding GBK。 提问者采纳 你用javac -encoding UTF-8 Exerc02.java能正常输出, 说明你的java文件的编码是utf8你用javac Exerc02.java编译出错,
阅读全文
摘要:我的前台页是这样的: <body> <form action="test.action" method="post"> 测试文件:<input type="file" id="doc" name="path" value=""/> <input type="submit" value="提交" on
阅读全文
摘要:在一个页面上画一个按钮,有四种办法: <input type="button" /> 这就是一个按钮。如果你不写javascript 的话,按下去什么也不会发生。 <input type="submit" /> 这样的按钮用户点击之后会自动提交 form,除非你写了javascript 阻止它。 <
阅读全文
摘要:When I start the Resin server it says What is this hmux? Is this a service or just resin use it for itself? This is a sample of Resin output: Hmux por
阅读全文
摘要:import java.io.File; public class Test { public static void main(String args[]){ Test t = new Test(); delFolder("c:/bb"); System.out.println("deleted"); } //删除文件夹 //param folderPath 文件夹完整绝对路径 public...
阅读全文
摘要:在同一个项目中间,如果既用到servlet有用了struts2的框架,运行项目时可能无法正常使用servlet,原因是在配置struts2的核心控制器时<url-pattern>/*</url-pattern>所致,需要定义一个过滤器,将servlet过滤,使struts2的核心控制器对servle
阅读全文
摘要:看网上的教程有时候不一定凑效,我是自己摸索的(看过尚硅谷的SSH视频),很多时候会安装不成功(或者安装结果与视频讲述不一致),但是安装过后,查看eclispe插件,会发现已经安装了(springIDE);对于hibernate,目前已经升级到新的版本,所以按照视频来学习可能已经落后了(安装不成功),
阅读全文