Incomplete solution for using input type=text value=str

Incomplete solution for using input type=text value=str
I encountered a very strange problem today. Look at the following code:
SimpleDateFormat dateFormat = new SimpleDateFormat

Copy code
The code is as follows:
teFormat("yyyy year MM month dd day E ");
String date = dateFormat.format(new Date());

The original intention was to print out XXXX year XX month XX day week X
The problem is in the following code. When I want to get the formatted data, I can only get "XXXX year XX month XX day" when using the value= method, but I can't get the "week X" behind it.

Copy code
The code is as follows:

<td align="left">
<label>
<input type="text" value=<%=date%> disabled />
</label>
</td>

① Later, I thought that it might be an HTML escape problem, so I removed all the spaces in "yyyy年MM月dd日E", and the result was that the value could be obtained normally or changed to "yyyy年MM月dd日-E"
② Another method is to use escape characters to replace the contents of the string to be displayed one by one.

Copy code
The code is as follows:

<%
String result = "";
for (int i = 0; i < date.length(); i++) {
switch (date.charAt(i)) {
case '<':
result += "<";
break;
case '>':
result += ">";
break;
case '&':
result += "&";
break;
case '"':
result += "\"";
break;
case '\'':
result += "'";
break;
case ' ':
result += "&nbsp;";
break;
default:
result += date.charAt(i);
}
}
%>

The references are as follows :
HTML source code to display the result description
&lt; < less than sign or display mark
&gt; > Greater than sign or display mark
&amp; & can be used to display other special characters
&quot; " quotation mark
&reg; ® Registered
&copy; © Copyright
&trade; ™ Trademark
&ensp; Half blank space
&emsp; A blank space
&nbsp; No breaking whitespace

<<:  Display flex arrangement in CSS (layout tool)

>>:  Solution to MySQL 8.0 cannot start 3534

Recommend

Example of using JS to determine whether an element is an array

Here are the types of data that can be verified l...

Implementing a shopping cart with native JavaScript

This article shares the specific code of JavaScri...

An example of how to optimize a project after the Vue project is completed

Table of contents 1. Specify different packaging ...

Docker installation and deployment of Net Core implementation process analysis

1. Docker installation and settings #Install Cent...

Linux sftp command usage

Concept of SFTP sftp is the abbreviation of Secur...

Install zip and unzip command functions under Linux and CentOS (server)

Install zip decompression function under Linux Th...

Detailed explanation of how to enter and exit the Docker container

1 Start the Docker service First you need to know...

Recommend several MySQL related tools

Preface: With the continuous development of Inter...

How to update v-for in Vue

Tips: Array change method will cause v-for to upd...

Explanation of the concept and usage of Like in MySQL

Like means "like" in Chinese, but when ...

MySQL service and database management

Table of contents 1. Start and stop service instr...

How to install MySQL 5.7.29 with one click using shell script

This article refers to the work of 51CTO blog aut...