Newbie's problem about linking the Html written on DreamWever to the server written_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 12:03:30
Original
1472 people have browsed it

<form action="http://123.235.2.217:20000">(自己机子的ip)       <fieldset >       <legend>注册区域</legend>    	<table border= "1" bordercolor="#00FF66" width="400" cellpadding="10" cellspacing="0" >        	<tr>            	<th colspan="2">注册信息</th>            </tr>        	<tr>            	<td>用户名</td>                <td><input  type="text" name="user"/></td>            </tr>
Copy after login


The following is a simple server written on eclipse
import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.io.OutputStreamWriter;import java.io.PrintWriter;import java.net.ServerSocket;import java.net.Socket;public class Client {	public static void main(String[] args) throws IOException{		ServerSocket sever = new ServerSocket(20000);		Socket socket = sever.accept();		InputStream in = socket.getInputStream();		byte[] buf = new byte[1024];				int len = in.read(buf);		System.out.println(new String(buf, 0, len));				OutputStream out = socket.getOutputStream();				PrintWriter pw = new PrintWriter(out,true);		pw.println("<font size = 7 color = green>注册成功</font>");				System.out.println("hello world");		sever.close();		socket.close();			}}
Copy after login


I don’t know why I can’t connect, please help, thank you


Reply to the discussion (solution)

I don’t know how to write action in java. The path written by php in action is the relative path of the program

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!