当前位置: 代码迷 >> Java Web开发 >> 关于JAVA。NET包问题~~~~`
  详细解决方案

关于JAVA。NET包问题~~~~`

热度:513   发布时间:2004-12-02 11:11:00.0
关于JAVA。NET包问题~~~~`

http://www.hotelonline.com.cn/hotelreserve/hotelmain.asp

在客户端访问的时候,有没有办法把他顶端和底端的都去掉``只显示中间的表单部分啊??

搜索更多相关主题的帖子: JAVA  NET  

----------------解决方案--------------------------------------------------------

指哪个顶端和底端?是指那些图什么的吗?要是这个问题的话,最好装个dreamweaver,可以很容易就删掉


----------------解决方案--------------------------------------------------------
`````````我是想在客户端显示的时候只显示表单部分``````,我在自己机器删掉也没用啊``服务器那还是没变,我访问的还事它的服务器啊
----------------解决方案--------------------------------------------------------

我一个朋友说:写一个类````用JAVA。NET包取服务器的源文件,在用空字符串代替顶端和底端```你知道怎么写吗?


----------------解决方案--------------------------------------------------------
我以为你是要在服务器端修改内容,你说的那种方式肯定可行,不过我有没有写过,不是很清楚,最近没有什么时间试,你从网上找找吧
----------------解决方案--------------------------------------------------------

java.lang.ArrayIndexOutOfBoundsException: 0 at ReadURL.main(ReadURL.java:11) Exception in thread "main"

这个错误是怎么回事呢??


----------------解决方案--------------------------------------------------------
这个应该和你的Array有关,自己看看
----------------解决方案--------------------------------------------------------

import java.net.*; import java.io.*; public class ReadURL{ public readURL(){}

public static void main(String args[]) { URL url=null; InputStream in=null; try{ url=new URL(args[0]); in=url.openStream(); DataInputStream buffer=new DataInputStream(in); String lineOfData; while((lineOfData=buffer.readLine())!=null){ System.out.println(lineOfData); } } catch (MalformedURLException e){ System.out.println("bad url"); } catch (IOException e){ System.out.println("IO ERROR"+e.getMessage()); } finally{ if(in!=null) try{ in.close(); } catch(IOException e){} } System.exit(0); } }

用这个读取网站源码```你看有什么问题呢


----------------解决方案--------------------------------------------------------
顶一下啊``快来啊斑竹大人
----------------解决方案--------------------------------------------------------

你看一下这个例子好了

import java.net.*; import java.io.*; public class url{ public static void main(String args[]){ try{ URL url1=new URL("http://www.sohu.com/index"); BufferedReader in=new BufferedReader(new InputStreamReader(url1.openStream())); String line; while((line=in.readLine())!=null){ System.out.println(line); } in.close(); } catch(Exception e){ System.out.println(e); } } }

[此贴子已经被作者于2004-12-07 14:36:13编辑过]


----------------解决方案--------------------------------------------------------
  相关解决方案