在HTML【1】中已经说明了HTML编程的基本方式,最后说到了表单提交的方式有get和post方式,那么到底什么是get/post 方式呢,两者有什么区别?现在我就具体的介绍一下。
首先回顾一下表单的基本编程,代码如下:
其中method="post"是post方式,默认的(我们也可以指定)为get方式。那么两者有什么区别呢?
这里先进行一下这样的思考,既然是提交,那向什么地方提交呢?答案是肯定的,HTML网页向服务器提交表单数据,既然想到服务器那么就会想到tomcat,同时也必须想到可以自己编写一个Java程序来模拟tomcat的服务。
具体的过程如下,首先ServerSocket监听一个端口,相对应的HTML的action =“http://localhost:9090”表示数据提交到本地主机的9090端口,当ServerSocket监听到有HTML对这个端口进行连接,就accept这个Socket对象,然后就可以读取http交互的信息。具体的代码如下:
public static void main(String[] args) throws IOException { // 接收表单的数据 ServerSocket ss = new ServerSocket(9090); Socket s = ss.accept(); System.out.println(s.getInetAddress().getHostAddress()); InputStream in = s.getInputStream(); byte[] buf = new byte[1024]; int len = in.read(buf); System.out.println(new String(buf,0,len)); PrintWriter out = new PrintWriter(s.getOutputStream(),true); out.println("<font color="green" size="7">注册成功</font>"); s.close(); ss.close(); }}
那么咱们运行一下:
当提交方式是get的时候,收到的返回信息是:
下面的是标签栏的内容。
可以发现,他的所有数据在请求行的时候就会显示出来(并在标签栏里就显示)显然这是非诚不安全的。
下面是使用post返回的http的内容,照片如下:
可以看出它将提交的内容全部封装到空行之后的内容里,并且标签栏里面没有显示任何东西,显然这是相对比较安全的。
好了,它俩具体的区别如下:
1.从安全性看get
版权声明:本文为博主原创文章,未经博主允许不得转载。

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
