码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA获取网页源码

时间:2014-09-14 14:00:17      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   java   ar   for   div   sp   

package ex30;



import java.awt.*;

import java.awt.event.*;

import java.io.*;

import java.net.*;

import javax.swing.*;



public class ViewRemoteFile extends JApplet{

	// Button to view the file

	private JButton jbtView = new JButton("View");

	

	// Text field to receive file name

	private JTextField jtfURL = new JTextField(12);

	

	// Text area to store file

	private JTextArea jtaFile = new JTextArea();

	

	// Label to display status

	private JLabel jlblStatus = new JLabel();

	

	/** Initialize the applet */

	public void init(){

		// Create a panel to hold a label, a text field, and a button

		JPanel p1 = new JPanel();

		p1.setLayout(new BorderLayout());

		p1.add(new JLabel("Filename"), BorderLayout.WEST);

		p1.add(jtfURL, BorderLayout.CENTER);

		p1.add(jbtView, BorderLayout.EAST);

		

		// Place text area and panel p to the applet

		setLayout(new BorderLayout());

		add(new JScrollPane(jtaFile), BorderLayout.CENTER);

		add(p1, BorderLayout.NORTH);

		add(jlblStatus, BorderLayout.SOUTH);

		

		// Register listener to handle the "View" button

		jbtView.addActionListener(new ActionListener(){

			public void actionPerformed(ActionEvent e){

				showFile();

			}

		});

	}

	

	private void showFile(){

		java.util.Scanner input = null;  // Use Scanner for text input

		URL url = null;

		

		try{

			// Obtain URL from the text field

			url = new URL(jtfURL.getText().trim());

			

			// Create a Scanner for input stream

			input = new java.util.Scanner(url.openStream());

			

			// Read a line and append the line to the text area

			while(input.hasNext()){

				jtaFile.append(input.nextLine() + "\n");

			}

			

			jlblStatus.setText("File loaded successfully");

		}

		catch(MalformedURLException ex){

			jlblStatus.setText("URL " + url + " not found");

		}

		catch(IOException e){

			jlblStatus.setText(e.getMessage());

		}

		finally{

			if(input != null)  input.close();

		}

	}

	

}

  转自http://bbs.csdn.net/topics/390040684

JAVA获取网页源码

标签:blog   http   io   os   java   ar   for   div   sp   

原文地址:http://www.cnblogs.com/kyxyes/p/3970910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!