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

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

Java Web,servlet,附件下載,學(xué)習(xí)筆記,記錄,解決服務(wù)器啟動(dòng)不了問題【詩書畫唱】

2020-10-13 21:04 作者:詩書畫唱  | 我要投稿

個(gè)人解決服務(wù)器啟動(dòng)不了的問題的方法






本地的拷貝

在同一臺(tái)電腦上進(jìn)行的操作。例如將一個(gè)文件從d盤拷貝到c盤。


一、附件上傳


在兩臺(tái)電腦之間進(jìn)行的拷貝,或者通過網(wǎng)頁的方式進(jìn)行的文件的拷貝。


附件上傳的步驟:

1、導(dǎo)包(附件上傳的包有很多種,我們今天使用的是這些包中的一種)

2、創(chuàng)建附件上傳的jsp頁面

3、創(chuàng)建附件上傳的servlet

在附件上傳中,除了type="file"的input標(biāo)簽以外,其他的input的isFormField都是true

?


地址:http://192.168.43.208:8888/j1908021/index.jsp

?


有時(shí)要實(shí)現(xiàn)的操作:

一、上傳圖片后顯示圖片



二、附件下載


將需要下載的文件放到服務(wù)器上,然后客戶端就可以通過訪問網(wǎng)頁來下載響應(yīng)的文件。


1、將需要下載的文件放到服務(wù)器上去

2、導(dǎo)包(附件上傳的包一樣)

3、創(chuàng)建附件下載的jsp頁面download.jsp

4、創(chuàng)建一個(gè)servlet實(shí)現(xiàn)附件下載功能


作業(yè)?



1、實(shí)現(xiàn)一個(gè)附件上傳程序,為了避免上傳的文件名重復(fù),請(qǐng)?jiān)谏蟼饕院?,給上傳的文件名添加一個(gè)時(shí)間戳。

例如:上傳的文件名叫2.png,為了避免跟其他人的文件名相同,將文件名改為2_2020-08-05-15-35-13-876.png進(jìn)行保存


自己想出關(guān)鍵?



再運(yùn)行后:





2、將一些文件拷貝到服務(wù)器上,將這些文件名保存在一個(gè)數(shù)據(jù)庫表中,要求打開一個(gè)download.jsp頁面,要能夠顯示數(shù)據(jù)庫表中的下載鏈接,要求能夠下載這些文件。

fileinfo:id,filename






create table fileinfo(

id int primary key auto_increment,



filename varchar(100)?



);


insert into fileinfo(filename) values ("20201012.txt"),('20201013.txt' );


--select * from fileinfo


--drop? table fileinfo


自己想出的好方法:


package bean;


public class Fileinfo {

private Integer id;

private String filename;

public Integer getId() {

return id;

}

public void setId(Integer id) {

this.id = id;

}

public String getFilename() {

return filename;

}

public void setFilename(String filename) {

this.filename = filename;

}

}


package com.SSHC.controller;


import java.io.IOException;

import java.io.InputStream;

import java.io.OutputStream;

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 DownloadServlet

?*/

@WebServlet("/ds")

public class DownloadServlet extends HttpServlet {

private static final long serialVersionUID = 1L;

? ? ? ?

? ? /**

? ? ?* @see HttpServlet#HttpServlet()

? ? ?*/

? ? public DownloadServlet() {

? ? ? ? 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

//設(shè)置響應(yīng)的字符集編碼

response.setCharacterEncoding("utf-8");

response.setContentType("text/html;charset=utf-8");

//獲取需要下載的附件的名字

String fileName = request.getParameter("fileName");

System.out.println("需要下載的附件名是:" + fileName);

//獲取附件在服務(wù)器上的路徑

String folder = "/doc/";

//通知瀏覽器以下載的形式打開一個(gè)界面

response.addHeader("Content-type", "appllication/octet-stream");

response.addHeader("Content-Disposition", "attachment;filename="?

+ fileName);

//讀取服務(wù)器上的文件

InputStream is = this.getServletContext()

.getResourceAsStream(folder + fileName);

//將流寫到客戶端去

OutputStream os = response.getOutputStream();

//每次緩存1024字節(jié)

byte[]buf = new byte[1024];

//每次讀取的字節(jié)長(zhǎng)度

int len = 0;

while((len = is.read(buf)) != -1) {

os.write(buf,0,len);

}

//清理資源

os.close();

is.close();

}


}

package com.SSHC.controller;


import java.io.IOException;

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;


import bean.Fileinfo;

import DAO.Dao;


/**

?* Servlet implementation class ELServlet

?*/

@WebServlet("/ELServlet")

public class ELDownloadServlet extends HttpServlet {

private static final long serialVersionUID = 1L;

? ? ? ?

? ? /**

? ? ?* @see HttpServlet#HttpServlet()

? ? ?*/

? ? public ELDownloadServlet() {

? ? ? ? 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

Dao gd = new Dao();

List<Fileinfo>list = gd.selectAll();


StringBuilder html = new StringBuilder();

html.append("<h1>詩書畫唱提醒你!</h1>"

+ "<br>點(diǎn)擊鏈接后可以下載對(duì)應(yīng)的文件哦!");

for(Fileinfo g : list) {


Integer ID= g.getId();

String filename=g.getFilename();

System.out.println(filename);


html.append(" <ul><li><a href='ds?fileName="+filename

+"'>下載"+filename+"</a></li> </ul>");

}


request.setAttribute("html", html);


System.out.println(html);

request.getRequestDispatcher("SSHCdownload.jsp")

? ? .forward(request, response);

}


}






package DAO;

import java.sql.Connection;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;

import java.util.List;


import Utils.DBUtils;


import bean.Fileinfo;




public class Dao {



public List<Fileinfo>selectAll(){


String sql = "select * from fileinfo";


Connection conn = null;


PreparedStatement pstm = null;


ResultSet rs = null;


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


try {


conn = DBUtils.getConn();


pstm = conn.prepareStatement(sql);


rs = pstm.executeQuery();


while(rs.next()) {


Integer id = rs.getInt("id");


String Filename= rs.getString("filename");



Fileinfo edu = new Fileinfo();


edu.setId(id);


edu.setFilename(Filename);



list.add(edu);


}


} catch (SQLException e) {


// TODO Auto-generated catch block


e.printStackTrace();


}


return list;


}




}

package Utils;


import java.io.IOException;

import java.io.InputStream;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.util.Properties;


public class DBUtils {

private static String driverName;

? ? private static String url;

? ? private static String user;

? ? private static String pwd;

? ??

? ? static {

? ? //讀取properties文件

? ? Properties prop = new Properties();

? ? //將db.properties文件讀取到內(nèi)存中去

? ? InputStream is = DBUtils.class.getClassLoader()

? ? .getResourceAsStream("db.properties");

? ? //加載內(nèi)容

? ? try {

prop.load(is);

//讀取內(nèi)容

driverName = prop.getProperty("dn");

//System.out.println(driverName);

url = prop.getProperty("url");

user = prop.getProperty("un");

pwd = prop.getProperty("up");

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

? ? }

? ??

? ? //獲取數(shù)據(jù)庫連接對(duì)象的方法

? ? public static Connection getConn(){

? ? Connection conn = null;

? ? try {

Class.forName(driverName);

conn = DriverManager

.getConnection(url,user,pwd);

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}? ?

? ? return conn;

? ? }

? ??

? ? public static void close(ResultSet

? ? rs,PreparedStatement pstm

? ? ,Connection conn){

? ? ? ? try {

? ? ? ? if(rs != null) {

? ? ? ? ? ? rs.close();

? ? ? ? ? ? }

? ? ? ? ? ? if(pstm != null) {

? ? ? ? ? ? pstm.close();

? ? ? ? ? ? }

? ? ? ? ? ? if(conn != null) {

? ? ? ? ? ? conn.close();

? ? ? ? ? ? }

? ? ? ? } catch(Exception e) {

? ? ? ? e.printStackTrace();

? ? ? ? }

? ? }

}

dn=com.mysql.jdbc.Driver

url=jdbc:mysql://localhost:3306/firstjsp?useUnicode=true&characterEncoding=UTF-8

un=root

up=root

<%@ page language="java" contentType="text/html; charset=UTF-8"?

pageEncoding="UTF-8"%>

<%

? ? String path = request.getContextPath();

? ? String basePath = request.getScheme()+"://"+

? ? request.getServerName()+":"+request.getServerPort()+path+"/";

%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

? ? <head>

? ? ? ? <base hreff="<%=basePath%>">

? ? ? ? <title></title>

? ? ? ? <meta http-equiv="pragma" content="no-cache">

? ? ? ? <meta http-equiv="cache-control" content="no-cache">

? ? ? ? <meta http-equiv="expires" content="0">

? ? ? ? <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

? ? ? ? <meta http-equiv="description" content="This is my page">

? ? ? ? <style type="text/css">

? ? ? ? ? ? * {

? ? ? ? ? ? ? ? font-size: 50px;

? ? ? ? ? ? }

? ? ? ? </style>

? ? </head>

? ? <body>

? ? ? ${html }

? ? </body>

</html>



————————————————————————————


附件下載的例子:


package com.jy.controller;


import java.io.IOException;

import java.io.InputStream;

import java.io.OutputStream;


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 DownloadServlet

?*/

@WebServlet("/ds")

public class DownloadServlet extends HttpServlet {

private static final long serialVersionUID = 1L;

? ? ? ?

? ? /**

? ? ?* @see HttpServlet#HttpServlet()

? ? ?*/

? ? public DownloadServlet() {

? ? ? ? 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

//設(shè)置響應(yīng)的字符集編碼

response.setCharacterEncoding("utf-8");

response.setContentType("text/html;charset=utf-8");

//獲取需要下載的附件的名字

String fileName = request.getParameter("fileName");

System.out.println("需要下載的附件名是:" + fileName);

//獲取附件在服務(wù)器上的路徑

String folder = "/doc/";

//通知瀏覽器以下載的形式打開一個(gè)界面

response.addHeader("Content-type", "appllication/octet-stream");

response.addHeader("Content-Disposition", "attachment;filename="?

+ fileName);

//讀取服務(wù)器上的文件

InputStream is = this.getServletContext()

.getResourceAsStream(folder + fileName);

//將流寫到客戶端去

OutputStream os = response.getOutputStream();

//每次緩存1024字節(jié)

byte[]buf = new byte[1024];

//每次讀取的字節(jié)長(zhǎng)度

int len = 0;

while((len = is.read(buf)) != -1) {

os.write(buf,0,len);

}

//清理資源

os.close();

is.close();

}


}


1、實(shí)現(xiàn)附件上傳功能。嘗試對(duì)上傳文件的類型進(jìn)行限制,只能傳圖片(png,jpg)文件。

2、在兩臺(tái)電腦之間進(jìn)行附件上傳的操作。

3、學(xué)會(huì)使用cmd命令:ipconfig查看服務(wù)器的ip地址,ping檢查跟指定的ip地址的電腦是否連接在同一個(gè)網(wǎng)內(nèi)的

ping 192.168.42.133就是檢查你的電腦跟這個(gè)ip地址的電腦是否連接在一起了。


abc.txt.png

1、實(shí)現(xiàn)一個(gè)附件上傳程序,為了避免上傳的文件名重復(fù),請(qǐng)?jiān)谏蟼饕院?,給上傳的文件名添加一個(gè)時(shí)間戳。

例如:上傳的文件名叫2.png,為了避免跟其他人的文件名相同,將文件名改為2_2020-08-05-15-35-13-876.png進(jìn)行保存




2、將一些文件拷貝到服務(wù)器上,將這些文件名保存在一個(gè)數(shù)據(jù)庫表中,要求打開一個(gè)download.jsp頁面,要能夠顯示數(shù)據(jù)庫表中的下載鏈接,要求能夠下載這些文件。

fileinfo:id,filename

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>

<%

? ? String path = request.getContextPath();

? ? String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

? ? <head>

? ? ? ? <base hreff="<%=basePath%>">

? ? ? ? <title></title>

? ? ? ? <meta http-equiv="pragma" content="no-cache">

? ? ? ? <meta http-equiv="cache-control" content="no-cache">

? ? ? ? <meta http-equiv="expires" content="0">

? ? ? ? <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

? ? ? ? <meta http-equiv="description" content="This is my page">

? ? ? ? <style type="text/css">

? ? ? ? ? ? * {

? ? ? ? ? ? ? ? font-size: 50px;

? ? ? ? ? ? }

? ? ? ? </style>

? ? </head>

? ? <body>

? ? ? ? <ul>

? ? ? ??

? ? ? ? ? ? <li><a href="ds?fileName=20201012.txt">20201012作業(yè)</a></li>

? ? ? ? ? ? <li><a href="ds?fileName=20201013.txt">20201013作業(yè)</a></li>

? ? ? ? </ul>

? ? </body>

</html>





Java Web,servlet,附件下載,學(xué)習(xí)筆記,記錄,解決服務(wù)器啟動(dòng)不了問題【詩書畫唱】的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
云浮市| 昌乐县| 扎兰屯市| 绥阳县| 乌恰县| 女性| 喀什市| 桃源县| 于田县| 招远市| 门源| 白玉县| 怀化市| 上犹县| 六盘水市| 深圳市| 磐安县| 固镇县| 麟游县| 滨州市| 双辽市| 玉山县| 鹤壁市| 曲周县| 定南县| 永春县| 新乐市| 修水县| 洪湖市| 嘉黎县| 兴仁县| 合江县| 乐昌市| 古浪县| 开平市| 太和县| 榆社县| 大足县| 永平县| 驻马店市| 临漳县|