最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

第二次操作考試:Java web字符串拼接,顯示成表格,有時(shí)要記憶,默寫內(nèi)容【詩(shī)書畫唱】

2020-10-06 21:54 作者:詩(shī)書畫唱  | 我要投稿



package T;


public class Product {

? ? private String name;

? ? private Double price;

? ? public Product(String n,Double p) {

// TODO Auto-generated constructor stub

? ? this.name = n;

? ? this.price = p;

}

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public Double getPrice() {

return price;

}

public void setPrice(Double price) {

this.price = price;

}

}

package T;


import java.io.IOException;

import java.util.ArrayList;

import java.util.List;


import javax.servlet.ServletException;

import javax.servlet.annotation.WebServlet;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;


/**

?* Servlet implementation class TestServlet

?*/

@WebServlet("/ts")

public class TestServlet extends HttpServlet {

private static final long serialVersionUID = 1L;

? ? ? ?

? ? /**

? ? ?* @see HttpServlet#HttpServlet()

? ? ?*/

? ? public TestServlet() {

? ? ? ? super();

? ? ? ? // TODO Auto-generated constructor stub

? ? }


/**

* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)

*/

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

// TODO Auto-generated method stub

this.doPost(request, response);

}


/**

* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)

*/

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

// TODO Auto-generated method stub

List<Product>list = new ArrayList<Product>();

for(int i = 0;i < 3;i ++) {

Product p = new Product("商品" + i,3.3 + i);

list.add(p);

}

//將List中的數(shù)據(jù)拼接成一個(gè)表格,并且顯示出來(lái)

StringBuilder html = new StringBuilder();

html.append("<table border='1'><tr><th>商品名稱"

+ "</th><th>商品價(jià)格</th><th>操作</th></tr>");

for(Product p : list) {

html.append("<tr><td>");

html.append(p.getName());

html.append("</td><td>");

html.append(p.getPrice());

html.append("</td><td><a href='#'>修改</a></td></tr>");

}

html.append("</table>");

// System.out.println(html);

response.setCharacterEncoding("gbk");

//將html代碼顯示在頁(yè)面上

response.getWriter().write(html.toString());

}


}



第二次操作考試:Java web字符串拼接,顯示成表格,有時(shí)要記憶,默寫內(nèi)容【詩(shī)書畫唱】的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
根河市| 长丰县| 保定市| 韩城市| 神池县| 昆明市| 咸阳市| 华池县| 天镇县| 东宁县| 辽阳市| 乌兰浩特市| 马公市| 荥经县| 丰原市| 武强县| 汽车| 神木县| 兴海县| 盐源县| 甘肃省| 蓬安县| 石首市| 松溪县| 娄烦县| 抚宁县| 宜君县| 浦县| 闵行区| 东光县| 西宁市| 浠水县| 霍林郭勒市| 定远县| 中西区| 临澧县| 新河县| 庆城县| 南漳县| 吉木乃县| 荆门市|