Exception in thread "main" java.sql.SQLRecoverableException: 无法从套接字读取更多的数据,哪里出问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Exception in thread "main" java.sql.SQLRecoverableException: 无法从套接字读取更多的数据,哪里出问题相关的知识,希望对你有一定的参考价值。
我的代码:
import java.sql.*;
public class TestJDBC
public static void main(String[] args) throws Exception
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection conn =DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:CLRExtProc","system","WW1989");
trace:
Exception in thread "main" java.sql.SQLRecoverableException: 无法从套接字读取更多的数据
at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1200)
at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:1155)
at oracle.jdbc.driver.T4C8TTIpro.receive(T4C8TTIpro.java:128)
at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1064)
at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301)
at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:531)
at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:221)
at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:503)
at java.sql.DriverManager.getConnection(DriverManager.java:582)
at java.sql.DriverManager.getConnection(DriverManager.java:185)
at TestJDBC.main(TestJDBC.java:5)
求高手解答,解决了可以按要求加分
http://zhidao.baidu.com/question/259069010.html?an=0&si=1追问
但是我觉得没有帮助啊
参考资料:http://zhidao.baidu.com/question/259069010.html?an=0&si=1
参考技术C CLRExtProc 是你的数据库sid或servicename吗追问是sid
追答我猜测是不是系统按装的网络相关工具或者你的驱动版本的问题,从你的数据库那里铐一个jdbc jar文件
参考技术D 驱动文件是否导入?是否正确?Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1
-
场景:eclipse中编写java中用到数组
- 问题:
程序不报错但是运行过程中 终止,显示字样
“
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1
”
- 截图:
- 原因:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException
这句话表示异常出现在main这个线程里面,错误是java.lang.ArrayIndexOutOfBoundsException。这个错误是你下标获取超出范围了,一般是例如你数组长度为2.但是你获取数组[3].这时候就会报这个错
以上是关于Exception in thread "main" java.sql.SQLRecoverableException: 无法从套接字读取更多的数据,哪里出问题的主要内容,如果未能解决你的问题,请参考以下文章
Exception in thread "main" java.lang.UnsupportedClassVersionError
Exception in thread "main" java.util.InputMismatchException
Exception in thread "main" java.lang.ClassCastException
Exception in thread "main" java.lang.UnsatisfiedLinkError:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1