java exception java异常汇总(1)
java exception 解决方案 - 我的异常网|异常|exception 730 - org.hibernate.LazyInitializationException:could not initialize proxy 731 - 警告: Error setting value 732 - override and commit 733 - Building workspace has encountered a problem. Errors during build 734 - Could not open the editor: An unexpected exception was thrown 735 - Error creating the view.An error occurred while automatically activating bundle org.eclipse.jdt.ui 736 - java.lang.IllegalMonitorStateException 737 - java.lang.UnsupportedClassVersionError: Bad version number in .class file 738 - java.io.EOFException 739 - not allowed to send 740 - 严重: Error listenerStart 741 - 抛异常 742 - ActionContext.getContext().getSession() 报空异常 743 - 为什么程序中有退出的代码java还要抛出异常呢? 744 - java.lang.StringIndexOutOfBoundsException: String index out of range 745 - 严重: Exception starting filter struts2 746 - java.lang.OutOfMemoryError 747 - Exception starting filter struts2 748 - struts2抛自定义异常 749 - ERROR 1064(42000) 750 - java.io.IOException:Credentials do not exist
相关文档:
Java学习从入门到精通
一、 JDK (Java Development Kit)
JDK是整个Java的核心,包括了Java运行环境(Java Runtime Envirnment),一堆Java工具和Java基础的类库(rt.jar)。不论什么Java应用服务器实质都是内置了某个版本的JDK。因此掌握JDK是学好Java的第一步。最主流的J ......
package com.test;
public class Jm1 {
private static int asnum;
private static char stchar;
public static void main(String[] args) {
System.out.println(getAsc("A"));
System.out.println(backchar(99));
}
/**
* 字符转ASC
*
* @param st
* @return
*/
public static int get ......
一.获得控制台用户输入的信息
Java代码
/** */
/**获得控制台用户输入的信息
* @return
* @throws IOException
*/
public
  ......
package test;
import java.lang.reflect.Method;
public class InvokeTest {
/**
*
* main 方法
* @param args
* void
*/
public static void main(String[] args) {
try {
&nbs ......
2009-11-11 18:06:09
/**
*
* @author Ice*
*/
public class RarUtil{
public static void main(String args[]) throws Exception {
String compress = "D:\\test.rar";// rar压缩文件
String decompression = "D:\\";// 解压路径
unZip(compress, decompression);
}
/** ......