摘要:
写个小程序试下: public class Example { String str = new String("good"); char[] ch = { 'a', 'b', 'c' }; public static void main(String args[]) { Example ex = 阅读全文
摘要:
org.springframework.orm.hibernate3.HibernateSystemException: No Dialect mapping for JDBC type: -9; nested exception is org.hibernate.MappingException: 阅读全文
摘要:
数据发送端(客户端): 数据接收端(服务器端): 简单的说,客户端 ①需要知道服务端的地址,端口,然后通过地址和端口建立连接(服务端必须先启动,否则建立不了连接) ②然后通过流将数据传输过去 服务器端 ①需要确定使用哪个接口,如例子里使用的9002端口 ServerSocket ss = new S 阅读全文