http://blog.sina.com.cn/s/blog_4f1c99de0100tyty.htmltry{//代码区}catch(Exception
e){//异常处理}代码区如果有错误,就会返回所写异常的处理。首先要清楚,如果没有try的话,出现异常会导致程序崩溃。而try则可以保证程序的正...
分类:
编程语言 时间:
2014-06-07 04:31:31
阅读次数:
308
阻塞IO实现:
public class PlainEchoServer {
public void serve(int port) throws IOException {
final ServerSocket socket = new ServerSocket(port);
try {
while (true) {
final Socket clientSocket...
分类:
其他好文 时间:
2014-06-02 23:32:20
阅读次数:
357
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
response.setContentType(...
分类:
其他好文 时间:
2014-05-28 20:34:21
阅读次数:
305
收藏一个获取网络图片的方法。 1 //获取网络图片 2 public void
ImageRequest(String ImageName,String GifUrl) throws Exception { 3 //new一个URL对象 4
URL u...
分类:
编程语言 时间:
2014-05-28 11:19:53
阅读次数:
333
1 public static void main(String[] args) throws
Exception { 2 ByteArrayOutputStream bos = new ByteArrayOutputStream(); //字符流 3
...
分类:
其他好文 时间:
2014-05-28 02:16:34
阅读次数:
320
一个不错的例子值得细细品味:
下面按照包顺序将代码贴出来供大家参考:
IEmpDAO
package org.lzch.dao;
import java.util.List;
import org.lzch.vo.Emp;
public interface IEmpDAO {
public boolean doCreate(Emp emp)throws Exception;
p...
分类:
编程语言 时间:
2014-05-26 05:58:08
阅读次数:
578
java中的length属性是针对数组的java中的length()方法是针对字符串String的java中的size()方法是针对泛型集合的public
static void main(String[] args) throws IOException { String []list={"it....
分类:
编程语言 时间:
2014-05-25 22:46:34
阅读次数:
236
#第一种基于原生的JDBC的方式实现
private Integer insert(POJO entity, String table) throws SQLException {
String insertSQL = "INSERT INTO " + table + " (XXXX)VALUES(?,?,?,?,?,?,?,?)";
DataSource dataSource = Se...
分类:
系统相关 时间:
2014-05-25 20:45:20
阅读次数:
336
Am.java中: View Code@Override public void onRun()
throws Exception { mAm = ActivityManagerNative.getDefault(); if (mAm == null) {
System.err.println(NO...
分类:
其他好文 时间:
2014-05-25 12:20:45
阅读次数:
391
import java.io.*; import java.io.*;class Main{
public static void main(String[] args) throws IOException{ // File path=new
File("e:\\liudan...
分类:
其他好文 时间:
2014-05-24 08:07:58
阅读次数:
195