`
javaitface
  • 浏览: 16396 次
  • 性别: Icon_minigender_1
  • 来自: 沈阳
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表

java jdk1.7 网址

    博客分类:
  • java
http://www.java.sh/api/jdk1_7/
求指点: #include <stdio.h> #include <stdlib.h> #include <string.h> struct road    //定义路的结构体 { int struct_size;   //结构体长度 int LinkID; int NameSize; int ClassID; int Xlu; int flag; char name[20]; road() { struct_size=0; LinkID=0; NameSize=0; ClassID=0; Xlu=0; flag= ...
from:http://www.zihou.me/html/2011/01/27/2721.html 谈谈ArrayList和Vector这两种链表,虽然关于这两种链表之间比较的文章或帖子非常多,但我也在这里记录一下。 对于这两种链表,恐怕很多程序员在面试的时候都可能会碰到ArrayList和Vector两者 ...
from:http://www.zihou.me/html/2011/01/27/2726.html String和StringBuffer有何区别?或许我们所熟知的是String是定长而StringBuffer是变长的,这种说法当然是没错的,而事实上,在一般的情况下,String和StringBuffer两者用起来是没有任何区别的。 那么所说的一般情况是指那些情况呢?比如我们定义一个字符变量: String str = “”; StringBuffer str = new StringBuffer(“”); 我们只是对这变量进行一些常规的字符操作,比如用来得到form表单提交的字符串等等,在这 ...
  from:http://www.zihou.me/html/2010/02/21/1547.html 在客户端通过Socket来连接远程一台服务器的时候往往会报类似如下的错误: java.net.ConnectException: Connection refused: connect、java.net.SocketException: Network is unreachable: connect 下面给出一个小测试例子来说明,通过端口号9160连接本机: public static void main(String[] args) { String host_ = "127.0 ...
http://blog.sciencenet.cn/home.php?mod=space&uid=210641&do=blog&id=508634为了方便大家从理论到实践,从入门到精通,循序渐进系统地理解和掌握推荐系统相关知识。特做了个读物清单。大家可以按此表阅读,也欢迎提出意见和指出未标 ...
from:http://www.cnzz.cc/edu/webdesign/FreeHtml/152.html 滚动字幕Marquee代码大全 基本语法 ------------------------------------------- <marquee>滚动文字 </marquee> 文字移动属性的设置 方向 <direction=#> #=left, right,up,down <marquee direction=left>从右向左移!</marquee> 方式 <bihavior=#> #= ...
这么好的东西,不拿来出分享,我对不起原作者呀。但是我这里不知道作者是谁,感谢在先了。 http://www.21php.com/Rational Rose 2003.rar http://www.cnblogs.com/Files/lixianhuei/rose2003crack.rar 以上两个网址分别是用来下载Rational Rose 2003及其破解软件的。 1、安装Rational Rose2003时,在需选择安装项的时候,只选择Rational Rose EnterPrise Edition即可,不需选择其他项。 2、安装好Rational Rose Enterp ...
  from:http://blog.csdn.net/stunt/article/details/6899866 楼主的整理的确是一个重要的一环——基础。但是,我认为我认为还有一环——应用能力,更重要。试想,当我们熟知了C语言了的规则了以后,却还是连一个使用的程序都写不出来 ...
        From:http://ons.me/147.html Windows7中IIS简单安装与配置(详细图解)
http://blog.csdn.net/axin66ok/article/details/6176000 在网上学习尚学堂Struts2的过程中,遇到了这个问题,当在配置Struts.xml中<constant name="struts.devMode" value="true" />,启动tomcat的时候报了一个这样的错误 严重: Exception starting filter struts2 java.lang.NullPointerException     at com.opensymphony.xwork2.util ...
http://mybeautiful.iteye.com/blog/705700 学习html后, 你会了解一些基本的html元素(Element), 如p, h1~h6, br, div, li, ul, img等. 如果将这些元素细分, 又可以分别归为顶级(top-level)元素,块级(block-level)元素和内联(inline)元素.   1. Top-level element 【顶 ...
package com.test; import java.io.IOException; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; public class test2 { private boolean isConnect(String url) { boolean flag = false; int counts = 0;// 循环次数 if (url == null || url.length() < 0) { ...
一、错误信息如下: 警告: Unexpected exception resolving reference java.io.FileNotFoundException: C:/Program Files/Apache Software Foundation/Tomcat 5.5/conf/tomcat-users.xml.new (拒绝访问。) at java.io.FileOutputStream.open(Native Method) at java.io.FileOutputStream.<init>(FileOutputStream.java:179) at jav ...
package org.lxh.connection; import java.sql.Connection; import java.sql.DriverManager; public class ConnectJDBC { // 驱动程序就是之前在classpath中配置的jdbc的驱动程序的jar包中 public static final String DBDRIVER = "oracle.jdbc.driver.OracleDriver"; // 连接地址是由各个数据库生产商单独提供的,所以需要单独记住 public static final String ...
Global site tag (gtag.js) - Google Analytics