Topic: 如何不用鼠标右键取得网页的html源代码

  Print this page

1.如何不用鼠标右键取得网页的html源代码 Copy to clipboard
Posted by: zhang_e_trust04
Posted on: 2004-09-24 14:17

一般要看网页的html源代码,需要用鼠标右键,来打开.
可否用java编程实现自动显示html源代码

2.Re:如何不用鼠标右键取得网页的html源代码 [Re: zhang_e_trust04] Copy to clipboard
Posted by: Watson
Posted on: 2004-10-10 18:46

可以通过Socket连接来获取信息,然后打出。

3.Re:如何不用鼠标右键取得网页的html源代码 [Re: zhang_e_trust04] Copy to clipboard
Posted by: westwin
Posted on: 2004-10-12 17:27

HttpURLConnection huc;
URL myurl=new URL("www.sina.com.cn");
huc=(HttpURLConnection)myurl.openConnection();
BufferedReader in;
in = new BufferedReader(new InputStreamReader(huc.getInputStream()));
String line;
while ((line = in.readLine()) != null){
System.out.println(line);
}

4.Re:如何不用鼠标右键取得网页的html源代码 [Re: westwin] Copy to clipboard
Posted by: stlinuxily
Posted on: 2004-10-12 20:13

调试westwin提供的代码得到效果:
/*
* Created on 2004-10-12
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package foldConstructor;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

/**
* @author lx
*
* TODO To change the template for this generated type comment go to Window -
* Preferences - Java - Code Style - Code Templates
*/
public class GetSourceCode {

  public static void main(String[] args) throws IOException {
    HttpURLConnection huc;
    URL myurl = new URL("http://www.cjsdn.net");
    huc = (HttpURLConnection) myurl.openConnection();
    BufferedReader in;
    in = new BufferedReader(new InputStreamReader(huc.getInputStream()));
    String line;
    while ((line = in.readLine()) != null) {
      System.out.println(line);
    }

  }
}

output:
<HTML>
<HEAD>
<meta HTTP-EQUIV=Expires CONTENT=0>
<meta HTTP-EQUIV=Content-Type content="text/html;charset=GBK">
<base href="http://www.cjsdn.net/">
<title>中国Java开发网 - 首页 </title>
<STYLE TYPE='text/css'>
BODY { font-family: Tahoma,Georgia; color: #000000; font-size: 14px }
P { font-family: Tahoma,Georgia; color: #000000; font-size: 14px }
TD { font-family: Tahoma,Georgia; font-size: 14px ;table-layout:fixed; word-break :break-all}
TEXTAREA { font-family: Tahoma,Georgia; font-size: 14px }
A { text-decoration: underline }
A:link { color: #000000; text-decoration: underline }
A:visited { color: #000080; text-decoration: underline }
A:active { color: #FF0000; text-decoration: underline }
A:hover { color: #FF0000; text-decoration: underline }

.head { background-color: #007DC6; color:#ffffff;font-weight: bold; }
.neck { background-color: #d1d9e2 }
.odd { background-color: #e3e3e3 }
.even { background-color: #f7f7f7}
.board { background-color: #D6DBE7}

.nav { text-decoration: underline; color:#000000 }
.nav:link { text-decoration: underline; color:#000000 }
.nav:visited { text-decoration: underline; color:#000000 }
.nav:active { text-decoration: underline; color:#FF0000 }
.nav:hover { text-decoration: none; color:#FF0000 }
.topic { text-decoration: none }
.topic:link { text-decoration: none; color:#000000 }
.topic:visited { text-decoration: none; color:#000080 }
.topic:active { text-decoration: none; color:#FF0000 }
.topic:hover { text-decoration: underline; color:#FF0000 }
.ilink { text-decoration: underline; color:#0000FF }
.ilink:link { text-decoration: underline; color:#0000FF }
.ilink:visited { text-decoration: underline; color:#004080 }
.ilink:active { text-decoration: underline; color:#FF0000 }
.ilink:hover { text-decoration: underline; color:#FF0000 }
.mod { text-decoration: none; color:#000000 }
.mod:link { text-decoration: none; color:#000000 }
.mod:visited { text-decoration: none; color:#000080 }
.mod:active { text-decoration: none; color:#FF0000 }
.mod:hover { text-decoration: underline; color:#FF0000 }
.thd { text-decoration: none; color:#808080 }
.thd:link { text-decoration: underline; color:#808080 }
.thd:visited { text-decoration: underline; color:#808080 }
.thd:active { text-decoration: underline; color:#FF0000 }
.thd:hover { text-decoration: underline; color:#FF0000 }
.curpage { text-decoration: none; color:#FFFFFF; font-family: Tahoma; font-size: 9px }
.page { text-decoration: none; color:#003063; font-family: Tahoma; font-size: 9px }
.page:link { text-decoration: none; color:#003063; font-family: Tahoma; font-size: 9px }
.page:visited { text-decoration: none; color:#003063; font-family: Tahoma; font-size: 9px }
.page:active { text-decoration: none; color:#FF0000; font-family: Tahoma; font-size: 9px }
.page:hover { text-decoration: none; color:#FF0000; font-family: Tahoma; font-size: 9px }
.subject { font-family: Tahoma,Georgia; font-size: 12px }
.text { font-family: Tahoma,Georgia; color: #000000; font-size: 12px }
.codeStyle {  padding-right: 0.5em; margin-top: 1em; padding-left: 0.5em; font-size: 9pt; margin-bottom: 1em; padding-bottom: 0.5em; margin-left: 0pt; padding-top: 0.5em; font-family: Courier New; background-color: #000000; color:#ffffff ; }
.smalltext { font-family: Tahoma,Georgia; color: #000000; font-size:11px }
.verysmalltext { font-family: Tahoma,Georgia; color: #000000; font-size:4px }
.member { font-family:Tahoma,Georgia; color:#003063; font-size:9px }
.btnStyle { background-color: #5D7790; border-width:2;
border-color: #E9E9E9; color: #FFFFFF; cursor: hand;
font-family: Tahoma,Georgia; font-size: 12px }
.selStyle { background-color: #FFFFFF; border-bottom: black 1px solid;
border-left: black 1px solid; border-right: black 1px solid;
border-top: black 1px solid; color: #000000; cursor: hand;
font-family: Tahoma,Georgia; font-size: 12px }
.inpStyle { background-color: #FFFFFF; border-bottom: black 1px solid;
border-left: black 1px solid; border-right: black 1px solid;
border-top: black 1px solid; color: #000000;
font-family: Tahoma,Georgia; font-size: 12px }
</STYLE>
<script>
function jumpToBeer
{
  javascript:window.location.hash=b;
}
</script>
</HEAD>
<BODY background='images_zh_CN/ALL_BG.gif' TEXT='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' LINK='#000000' VLINK='#000080' ALINK='#FF0000'>
<a name="top"></a>
<center>
<table bgcolor='#007DC6' border=0 cellspacing=0 cellpadding=0 width=95% height=8 style="border:1px #666666 solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 0px; border-left-width: 1px;width:95%;">
<tr><td ></td>
</tr></table>
<table BGCOLOR='#FFFFFF' border=0 cellspacing=0 cellpadding=0 width=95% style="border:1px #666666 solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 0px; border-left-width: 1px;width:95%;">
<tr><td width=299 align=left ><a href='http://www.cjsdn.net' target='_top'><img src='images_zh_CN/title.gif' border=0 hspace=0 vspace=0 align='left' width=299 height=75 alt='中国Java开发网'></a></td>
<td width=299 align=left ></td>
<td align=center>
<strong><font size="+2">中国Java开发网</font></strong>
</td>
</tr></table>
<table bgcolor='#007DC6' border=0 cellspacing=0 cellpadding=0 width=95% height=21 style="border:1px #666666 solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px;width:95%;">
<td align=right valign=center>
<span title='注册新账号'><a href='user/register'><font color="#FFFFFF">注册</a></span> | </font>
<span title='会员登录论坛'><a href='user/login'><font color="#FFFFFF">登录</a></span> | </font>
<span title='帮助及常见问题'><a href='html/help.html' target='_blank'><font color="#FFFFFF">帮助</a></span> | </font>
<span title='全文检索'><a href='post/search'><font color="#FFFFFF">搜索</a></span> | </font>
<span title='发帖最多的用户,回复最多的话题,人气最旺的话题'><a href='stat/top'><font color="#FFFFFF">排行榜</a></span> | </font>
<span title='按每月、日、周以及小时的帖子数统计'><a href='stat/analysis'><font color="#FFFFFF">发帖统计</a></span></font>  
<br>
</td>
<tr>

</tr>
</table><br clear='all'>

<script>
function jumpPage(newLoc)
{ newPage=newLoc.options[newLoc.selectedIndex].value;
if(newPage!="")window.location.href=newPage;}
</script>

<!-- nav bar begin -->
<table width='95%' cellspacing=0 cellpadding=2 border=0>
<tr>
  <td>
  <b>    
    您没有登录
    </b>  
</font>
</td>  
    <tr>
</table>

<table border=0 cellspacing=0 cellpadding=2 width=95%>
<tr><td colspan=2 align=right nowrap>
  <table border=0 cellspacing=0 cellpadding=0>
  <tr><td>
    <table border=0 cellspacing=0 cellpadding=0>
    <tr><td bgcolor=#9a9a9a><table border=0 cellspacing=1 cellpadding=0>
    <tr align=center>
    <td bgcolor=#e4e4e4><img src='images_zh_CN/posts.gif' align='absmiddle' border=0></a><font class=member><b>98580  </b></font></td></tr></table>
    </td></tr>
    </table>
  </td>
  <td>
    <table border=0 cellspacing=0 cellpadding=0>
    <tr><td bgcolor=#9a9a9a><table border=0 cellspacing=1 cellpadding=0>
    <tr align=center>
    <td bgcolor=#e4e4e4><a href='user/list'><img src='images_zh_CN/members.gif' align='absmiddle' alt='会员列表' border=0></a><font class=member><b>31065  </b></font></td>
<td bgcolor=#e4e4e4><a href='user/online'><img src='images_zh_CN/online_up.gif' align='absmiddle' alt='在线会员' border=0></a><font class=member><b> 78  </b></font><font class=member></font></td>

</tr></table>
    </td></tr></table>
  </td></tr>
  </table>
</td></tr>
</table>
  <table border=0 cellspacing=1 cellpadding=4 width='95%' class='board'>
<tr class='head'>
<td align=center><font color=#ffffff><b>论坛公告</b></font></td>
</tr>
<tr class='even'>
<td align=center>
 <FONT color=#ff3333 size=5><A href="http://www.cjsdn.net/post/view?bid=49&id=116007&sty=1">本站推出主机托管业务</A></FONT>
<br>
热门话题:<a href="http://www.cjsdn.net/post/view?bid=46&id=115499" target="_blank"><font color="#808080">请问怎么在一个java里显示flash?<font></a>
</td>
</tr>
</table><table border=0 cellspacing=1 cellpadding=4 width='95%' class='board'>
<tr class='head'>
<td colspan=2 align=center><font color=#ffffff><b>讨论区</b></font></td>
<td nowrap align=center><font color=#ffffff><b>主题数</b></font></td>
<td nowrap align=center><font color=#ffffff><b>帖子数</b></font></td>
<td nowrap align=center><font color=#ffffff><b>新</b></font></td>
<td nowrap align=center><font color=#ffffff><b>最新帖子</b></font></td>
<td align=center><font color=#ffffff><b>版主</b></font></td>
</tr>
  

     
                <tr class='neck'>
        <td nowrap colspan=7><b>管理区</b></td>
        </tr>
                       
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=15&sty=1&age=0'">
            <a href='post/page?bid=15&sty=1&age=0'>站务管理</a>
      <br>请提出您的宝贵意见和建议,申请版主,我们会慎重考虑您的建议
      </td>
      <td nowrap align=center width=6%>277</td>
      <td nowrap align=center width=6% >1107</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=15&id=116623&sty=3&age=0#116623"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 19:27       
      <br>  
      by <a href='user/info?uname=TopCool'>TopCool</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
</div></select></td></form>
      </tr>

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

     
                <tr class='neck'>
        <td nowrap colspan=7><b>论坛精华</b></td>
        </tr>
                       
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=29&sty=1&age=0'">
            <a href='post/page?bid=29&sty=1&age=0'>技术文章库</a>
      <br>收集网络上的技术文章,以及网友原创的文章,优秀文章设为精华,将所有的精华贴子含集中到一个版块,形成知识库
      </td>
      <td nowrap align=center width=6%>248</td>
      <td nowrap align=center width=6% >1040</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=29&id=116170&sty=3&age=0#116170"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-10 15:57       
      <br>  
      by <a href='user/info?uname=chuliang'>chuliang</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=palatum">palatum</OPTION>
</div></select></td></form>
      </tr>

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

     
                <tr class='neck'>
        <td nowrap colspan=7><b>Java技术</b></td>
        </tr>
                       
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=1&sty=1&age=0'">
            <a href='post/page?bid=1&sty=1&age=0'>Java基础</a>
      <br>Java编程基础
      </td>
      <td nowrap align=center width=6%>3014</td>
      <td nowrap align=center width=6% >13597</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=1&id=116626&sty=3&age=0#116626"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 19:53       
      <br>  
      by <a href='user/info?uname=fython'>fython</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=%C0%C3%C4%E0">烂泥</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=2&sty=1&age=0'">
            <a href='post/page?bid=2&sty=1&age=0'>J2EE综合</a>
      <br>Java企业应用解决组合,EJB、JavaMail、JNDI、IDL、RMI、RMI-IIOP、JTA/JTS、JMS等
      </td>
      <td nowrap align=center width=6%>2474</td>
      <td nowrap align=center width=6% >9762</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=2&id=116595&sty=3&age=0#116595"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 16:52       
      <br>  
      by <a href='user/info?uname=alexlex'>alexlex</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=dapan">dapan</OPTION>
<OPTION VALUE="user/info?uname=why">why</OPTION>
</div></select></td></form>
      </tr>

  
  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=3&sty=1&age=0'">
            <a href='post/page?bid=3&sty=1&age=0'>J2ME & Java Card</a>
      <br>讨论相关 J2ME 和 JavaCard 之话题,其中包含程序开发、Motolora、Nokia、Siemens手机应用及相关资源、新闻
      </td>
      <td nowrap align=center width=6%>309</td>
      <td nowrap align=center width=6% >889</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=3&id=116417&sty=3&age=0#116417"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-11 21:07       
      <br>  
      by <a href='user/info?uname=bluntsword'>bluntsword</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=bluntsword">bluntsword</OPTION>
</div></select></td></form>
      </tr>

  
  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=46&sty=1&age=30'">
            <a href='post/page?bid=46&sty=1&age=30'>Java GUI</a>
      <br>Applets、Swing、AWT、SWT、Java3D、Java2D、Java Media Framework...
      </td>
      <td nowrap align=center width=6%>472</td>
      <td nowrap align=center width=6% >1793</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=46&id=116622&sty=3&age=30#116622"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 19:20       
      <br>  
      by <a href='user/info?uname=april518'>april518</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=sc33">sc33</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=4&sty=1&age=0'">
            <a href='post/page?bid=4&sty=1&age=0'>Java Certification</a>
      <br>Sun公司SCJP、SCJD、SCWCD、SCBCD、SCMAD、SCEA...认证考试
      </td>
      <td nowrap align=center width=6%>922</td>
      <td nowrap align=center width=6% >3869</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=4&id=116572&sty=3&age=0#116572"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 15:46       
      <br>  
      by <a href='user/info?uname=dungeon'>dungeon</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=yamakasy">yamakasy</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=7&sty=1&age=0'">
            <a href='post/page?bid=7&sty=1&age=0'>Java IDE</a>
      <br>JBuilder、JDeveloper、IntelliJ IDEA 、Eclipse、NetBeans等IDE以及心得技巧体会
      </td>
      <td nowrap align=center width=6%>2768</td>
      <td nowrap align=center width=6% >13333</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=7&id=116621&sty=3&age=0#116621"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 19:05       
      <br>  
      by <a href='user/info?uname=Jove'>Jove</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=sanigo">sanigo</OPTION>
<OPTION VALUE="user/info?uname=linux_china">linux_china</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=19&sty=1&age=0'">
            <a href='post/page?bid=19&sty=1&age=0'>Java ILDE</a>
      <br>ILDE是Integrated Lifecycle Development Environment缩写。本栏目讨论Java应用开发的需求跟踪、UML设计、团队协作、版本控制、代码维护、QA等话题,涉及产品如Rose/Together/Caliber/VCS...等
      </td>
      <td nowrap align=center width=6%>253</td>
      <td nowrap align=center width=6% >984</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=19&id=116453&sty=3&age=0#116453"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 00:05       
      <br>  
      by <a href='user/info?uname=kang'>kang</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=fat32">fat32</OPTION>
<OPTION VALUE="user/info?uname=sothis">sothis</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=5&sty=1&age=0'">
            <a href='post/page?bid=5&sty=1&age=0'>WebService & XML</a>
      <br>讨论相关XML与Web Service技术,如:JAXP、JAXB、JAXM、Cocoon、SOAP 等等;并且包含 Web Services 技术分析、WSDP 标准介绍、应用及相关资源
      </td>
      <td nowrap align=center width=6%>334</td>
      <td nowrap align=center width=6% >926</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=5&id=116367&sty=3&age=0#116367"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-11 17:19       
      <br>  
      by <a href='user/info?uname=bwpc'>bwpc</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=wishmaster">wishmaster</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=6&sty=1&age=0'">
            <a href='post/page?bid=6&sty=1&age=0'>Java Security</a>
      <br>讨论安全与加密,包括Java Security Model、Applets签名、JAAS、JCE、JSSE、Security Tool ... 
      </td>
      <td nowrap align=center width=6%>217</td>
      <td nowrap align=center width=6% >811</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=6&id=116498&sty=3&age=0#116498"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 10:09       
      <br>  
      by <a href='user/info?uname=menzy'>menzy</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=menzy">menzy</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=8&sty=1&age=0'">
            <a href='post/page?bid=8&sty=1&age=0'>Java Resources</a>
      <br>业界相关新闻,Java技术相关站点
      </td>
      <td nowrap align=center width=6%>818</td>
      <td nowrap align=center width=6% >1964</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=8&id=116593&sty=3&age=0#116593"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 16:35       
      <br>  
      by <a href='user/info?uname=suntofly'>suntofly</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=bear">bear</OPTION>
</div></select></td></form>
      </tr>

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

     
                <tr class='neck'>
        <td nowrap colspan=7><b>架构技术</b></td>
        </tr>
                       
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=10&sty=1&age=0'">
            <a href='post/page?bid=10&sty=1&age=0'>Database/JDBC/JDO</a>
      <br>关系数据库、对象数据库、Java与数据库连接、JDO等相关技术
      </td>
      <td nowrap align=center width=6%>805</td>
      <td nowrap align=center width=6% >2535</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=10&id=116597&sty=3&age=0#116597"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 17:02       
      <br>  
      by <a href='user/info?uname=Tracy'>Tracy</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=%BE%C5%B0%DB">九佰</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=11&sty=1&age=0'">
            <a href='post/page?bid=11&sty=1&age=0'>Application Server</a>
      <br>应用服务器产品,配置方法,性能调节
      </td>
      <td nowrap align=center width=6%>706</td>
      <td nowrap align=center width=6% >2290</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=11&id=116620&sty=3&age=0#116620"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 19:01       
      <br>  
      by <a href='user/info?uname=TopCool'>TopCool</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=Big+Blue">Big Blue</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=13&sty=1&age=0'">
            <a href='post/page?bid=13&sty=1&age=0'>Middleware</a>
      <br>中间件技术
      </td>
      <td nowrap align=center width=6%>103</td>
      <td nowrap align=center width=6% >423</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=13&id=115168&sty=3&age=0#115168"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-04 15:22       
      <br>  
      by <a href='user/info?uname=bluepointer'>bluepointer</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=wishmaster">wishmaster</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=16&sty=1&age=0'">
            <a href='post/page?bid=16&sty=1&age=0'>UML</a>
      <br>采用UML语言设计的问题,Rational Rose,Together使用的问题和技巧
      </td>
      <td nowrap align=center width=6%>315</td>
      <td nowrap align=center width=6% >1481</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=16&id=116574&sty=3&age=0#116574"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-12 15:49       
      <br>  
      by <a href='user/info?uname=sabads'>sabads</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=fat32">fat32</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=17&sty=1&age=0'">
            <a href='post/page?bid=17&sty=1&age=0'>Design Pattern</a>
      <br>设计模式
      </td>
      <td nowrap align=center width=6%>222</td>
      <td nowrap align=center width=6% >853</td>
      <td nowrap align=center width=6%>
      -      </td>
      <td nowrap align=center class=smalltext width=15%>      
            <a href="post/view?bid=17&id=116103&sty=3&age=0#116103"><img src="images_zh_CN/lastpost.gif" border=0 align='absmiddle'></a>
      2004-10-10 10:00       
      <br>  
      by <a href='user/info?uname=href'>href</a>       
            </td>
      
<form><td width=20% valign="middle" align="center" nowrap>
<div class="smallfont">
<SELECT NAME="newLoc" onChange="jumpPage(this.form.newLoc)" style="font-size: 12px; background-color: #dfdfdf; font-family: Verdana,Tahoma;" maxlength="20">
<OPTION VALUE="">--版主列表--</OPTION>
<OPTION VALUE="user/info?uname=%BE%C5%B0%DB">九佰</OPTION>
<OPTION VALUE="user/info?uname=emarket">emarket</OPTION>
</div></select></td></form>
      </tr>

  

     
               
                       
      <tr class='even'>
      <td align=center nowrap width=4% valign=top>
                <img src='images_zh_CN/board.gif' border=0 align='absmiddle'>
              </td>
      <td width=50% valign=top onMouseOver="this.style.backgroundColor='#e9e9e9'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#f7f7f7';" onclick="window.location.href='post/page?bid=20&sty=1&age=0'">
            <a href='post/page?bid=20&sty=1&age=0'>Architecture & Framework</a>
      <br>软件架构和系统框架讨论
      </td>
      <td nowrap align=center width=6%>620</td>
      <td nowrap align=center width=6% >2790</td>
      <td nowrap align=center width=6%>
      -    


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923