码迷,mamicode.com
首页 >  
搜索关键字:throws    ( 4120个结果
java反射调用方法
1:Class类中的方法 public Method getDeclaredMethod(String name, Class... parameterTypes) throws NoSuchMethodException, ...
分类:编程语言   时间:2014-06-24 15:37:45    阅读次数:201
如何在servlet刚启动时候获取服务器根目录?
public class InitServlet extends HttpServlet{ public static String root; @Override public void init() throws ServletException { ...
分类:其他好文   时间:2014-06-22 23:49:27    阅读次数:203
在Java中如何逐行地写文件?
下边是写东西到一个文件中的Java代码。运行后每一次,一个新的文件被创建,并且之前一个也将会被新的文件替代。这和给文件追加内容是不同的。 public static void writeFile1() throws IOException { File fout = new File("out.txt"); FileOutputStream fos = new FileOutputStrea...
分类:编程语言   时间:2014-06-22 20:25:33    阅读次数:222
J2EE之ServletContext读取资源文件
ServletContext读取资源文件内容的方式有两种: 方法1. public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { InputStream in = this.getServletContext().g...
分类:其他好文   时间:2014-06-22 18:22:08    阅读次数:208
J2EE之字符编码输出
1. public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { print3(response); } private void print(HttpServletResponse response) thr...
分类:其他好文   时间:2014-06-22 17:16:43    阅读次数:175
(12)自定义异常代码练习
public class computer {     private int i = 1;   public void run() throws LanPingExpion, MaoYanExcetion   {     if (i ==2 )    throw new LanPingExpion("蓝屏了");     if (i ==3) {    throw new M...
分类:其他好文   时间:2014-06-18 12:34:15    阅读次数:184
获取web项目中的webroot目录路径
备忘,一段代码:@Override public void init(FilterConfig arg0) throws ServletException { // TODO Auto-generated method stub logger.info("=====...
分类:Web程序   时间:2014-06-18 09:14:10    阅读次数:233
servlet 实现下载文件
servlet: public class UpAndDownServlet extends HttpServlet { public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setCon...
分类:其他好文   时间:2014-06-18 06:24:27    阅读次数:205
(12)throws和throw的区别
函数上指int div(int a ,intb) th...
分类:其他好文   时间:2014-06-17 21:53:41    阅读次数:234
spring--JDBC的支持--7
7.1 概述7.1.1 JDBC回顾 传统应用程序开发中,进行JDBC编程是相当痛苦的,如下所示:java代码://cn.javass.spring.chapter7. TraditionalJdbcTest @Test public void test() throws Exception {.....
分类:数据库   时间:2014-06-17 20:23:13    阅读次数:374
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!