commit
b001789bf4
@ -0,0 +1,22 @@
|
|||||||
|
package domain;
|
||||||
|
|
||||||
|
public class ResultInfo
|
||||||
|
{
|
||||||
|
|
||||||
|
private String msg;
|
||||||
|
|
||||||
|
public String getMsg() {
|
||||||
|
return msg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMsg(String msg) {
|
||||||
|
this.msg = msg;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "ResultInfo{" +
|
||||||
|
"msg='" + msg + '\'' +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,35 @@
|
|||||||
|
package domain;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author laoyingyong
|
||||||
|
* @date: 2020-02-03 16:55
|
||||||
|
*/
|
||||||
|
public class StationAndQuality
|
||||||
|
{
|
||||||
|
private WaterQualityStation station;
|
||||||
|
private WaterQuality quality;
|
||||||
|
|
||||||
|
public WaterQualityStation getStation() {
|
||||||
|
return station;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStation(WaterQualityStation station) {
|
||||||
|
this.station = station;
|
||||||
|
}
|
||||||
|
|
||||||
|
public WaterQuality getQuality() {
|
||||||
|
return quality;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setQuality(WaterQuality quality) {
|
||||||
|
this.quality = quality;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "StationAndQuality{" +
|
||||||
|
"station=" + station +
|
||||||
|
", quality=" + quality +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,85 @@
|
|||||||
|
package domain;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author laoyingyong
|
||||||
|
* @date: 2020-01-30 12:47
|
||||||
|
*/
|
||||||
|
public class Statistics
|
||||||
|
{
|
||||||
|
private int a;//I类水质的数量
|
||||||
|
private int b;//II类水质的数量
|
||||||
|
private int c;//III类水质的数量
|
||||||
|
private int d;//IV类水质的数量
|
||||||
|
private int e;//V类水质的数量
|
||||||
|
private int f;//劣V类水质的数量
|
||||||
|
private int g;//其他
|
||||||
|
|
||||||
|
public int getA() {
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setA(int a) {
|
||||||
|
this.a = a;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getB() {
|
||||||
|
return b;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setB(int b) {
|
||||||
|
this.b = b;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getC() {
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setC(int c) {
|
||||||
|
this.c = c;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getD() {
|
||||||
|
return d;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setD(int d) {
|
||||||
|
this.d = d;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getE() {
|
||||||
|
return e;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setE(int e) {
|
||||||
|
this.e = e;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getF() {
|
||||||
|
return f;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setF(int f) {
|
||||||
|
this.f = f;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getG() {
|
||||||
|
return g;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setG(int g) {
|
||||||
|
this.g = g;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "Statistics{" +
|
||||||
|
"a=" + a +
|
||||||
|
", b=" + b +
|
||||||
|
", c=" + c +
|
||||||
|
", d=" + d +
|
||||||
|
", e=" + e +
|
||||||
|
", f=" + f +
|
||||||
|
", g=" + g +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,102 @@
|
|||||||
|
package domain;
|
||||||
|
|
||||||
|
public class User
|
||||||
|
{
|
||||||
|
private int id;
|
||||||
|
private String name;
|
||||||
|
private String gender;
|
||||||
|
private int age;
|
||||||
|
private String address;
|
||||||
|
private String qq;
|
||||||
|
private String email;
|
||||||
|
|
||||||
|
private String username;
|
||||||
|
private String password;
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getGender() {
|
||||||
|
return gender;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGender(String gender) {
|
||||||
|
this.gender = gender;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getAge() {
|
||||||
|
return age;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAge(int age) {
|
||||||
|
this.age = age;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAddress() {
|
||||||
|
return address;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAddress(String address) {
|
||||||
|
this.address = address;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getQq() {
|
||||||
|
return qq;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setQq(String qq) {
|
||||||
|
this.qq = qq;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEmail() {
|
||||||
|
return email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEmail(String email) {
|
||||||
|
this.email = email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUsername() {
|
||||||
|
return username;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUsername(String username) {
|
||||||
|
this.username = username;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPassword() {
|
||||||
|
return password;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPassword(String password) {
|
||||||
|
this.password = password;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "User{" +
|
||||||
|
"id=" + id +
|
||||||
|
", name='" + name + '\'' +
|
||||||
|
", gender='" + gender + '\'' +
|
||||||
|
", age=" + age +
|
||||||
|
", address='" + address + '\'' +
|
||||||
|
", qq='" + qq + '\'' +
|
||||||
|
", email='" + email + '\'' +
|
||||||
|
", username='" + username + '\'' +
|
||||||
|
", password='" + password + '\'' +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,84 @@
|
|||||||
|
package domain;
|
||||||
|
|
||||||
|
import java.sql.Timestamp;
|
||||||
|
|
||||||
|
public class WaterLevel
|
||||||
|
{
|
||||||
|
private Integer id;
|
||||||
|
private String riverName;
|
||||||
|
private String siteName;
|
||||||
|
private Timestamp collectionDate;
|
||||||
|
private Double waterLevel;
|
||||||
|
private Double flow;
|
||||||
|
private Double over;
|
||||||
|
|
||||||
|
|
||||||
|
public Integer getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(Integer id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRiverName() {
|
||||||
|
return riverName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRiverName(String riverName) {
|
||||||
|
this.riverName = riverName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSiteName() {
|
||||||
|
return siteName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSiteName(String siteName) {
|
||||||
|
this.siteName = siteName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Timestamp getCollectionDate() {
|
||||||
|
return collectionDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCollectionDate(Timestamp collectionDate) {
|
||||||
|
this.collectionDate = collectionDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getWaterLevel() {
|
||||||
|
return waterLevel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWaterLevel(Double waterLevel) {
|
||||||
|
this.waterLevel = waterLevel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getFlow() {
|
||||||
|
return flow;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFlow(Double flow) {
|
||||||
|
this.flow = flow;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getOver() {
|
||||||
|
return over;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setOver(Double over) {
|
||||||
|
this.over = over;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "WaterLevel{" +
|
||||||
|
"id=" + id +
|
||||||
|
", riverName='" + riverName + '\'' +
|
||||||
|
", siteName='" + siteName + '\'' +
|
||||||
|
", collectionDate=" + collectionDate +
|
||||||
|
", waterLevel=" + waterLevel +
|
||||||
|
", flow=" + flow +
|
||||||
|
", over=" + over +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,107 @@
|
|||||||
|
package domain;
|
||||||
|
|
||||||
|
import java.sql.Timestamp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author laoyingyong
|
||||||
|
* @date: 2020-01-19 15:24
|
||||||
|
*/
|
||||||
|
public class WaterQuality
|
||||||
|
{
|
||||||
|
private Integer id;
|
||||||
|
private String belongStation;
|
||||||
|
private Timestamp dateTime;
|
||||||
|
private Double pH;
|
||||||
|
private Double dO;
|
||||||
|
private Double nH4;
|
||||||
|
private Double cODMn;
|
||||||
|
private Double tOC;
|
||||||
|
private String level;
|
||||||
|
|
||||||
|
public Integer getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(Integer id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBelongStation() {
|
||||||
|
return belongStation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBelongStation(String belongStation) {
|
||||||
|
this.belongStation = belongStation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Timestamp getDateTime() {
|
||||||
|
return dateTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDateTime(Timestamp dateTime) {
|
||||||
|
this.dateTime = dateTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getpH() {
|
||||||
|
return pH;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setpH(Double pH) {
|
||||||
|
this.pH = pH;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getdO() {
|
||||||
|
return dO;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setdO(Double dO) {
|
||||||
|
this.dO = dO;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getnH4() {
|
||||||
|
return nH4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setnH4(Double nH4) {
|
||||||
|
this.nH4 = nH4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getcODMn() {
|
||||||
|
return cODMn;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setcODMn(Double cODMn) {
|
||||||
|
this.cODMn = cODMn;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double gettOC() {
|
||||||
|
return tOC;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void settOC(Double tOC) {
|
||||||
|
this.tOC = tOC;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getLevel() {
|
||||||
|
return level;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLevel(String level) {
|
||||||
|
this.level = level;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "WaterQuality{" +
|
||||||
|
"id=" + id +
|
||||||
|
", belongStation='" + belongStation + '\'' +
|
||||||
|
", dateTime=" + dateTime +
|
||||||
|
", pH=" + pH +
|
||||||
|
", dO=" + dO +
|
||||||
|
", nH4=" + nH4 +
|
||||||
|
", cODMn=" + cODMn +
|
||||||
|
", tOC=" + tOC +
|
||||||
|
", level='" + level + '\'' +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,72 @@
|
|||||||
|
package domain;
|
||||||
|
|
||||||
|
public class WaterQualityStation
|
||||||
|
{
|
||||||
|
private int id;
|
||||||
|
private String stationName;
|
||||||
|
private Double longitude;
|
||||||
|
private Double latitude;
|
||||||
|
private String section;
|
||||||
|
private String introduction;
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getStationName() {
|
||||||
|
return stationName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStationName(String stationName) {
|
||||||
|
this.stationName = stationName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getIntroduction() {
|
||||||
|
return introduction;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIntroduction(String introduction) {
|
||||||
|
this.introduction = introduction;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSection() {
|
||||||
|
return section;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSection(String section) {
|
||||||
|
this.section = section;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getLongitude() {
|
||||||
|
return longitude;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLongitude(Double longitude) {
|
||||||
|
this.longitude = longitude;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getLatitude() {
|
||||||
|
return latitude;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLatitude(Double latitude) {
|
||||||
|
this.latitude = latitude;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "WaterQualityStation{" +
|
||||||
|
"id=" + id +
|
||||||
|
", stationName='" + stationName + '\'' +
|
||||||
|
", longitude=" + longitude +
|
||||||
|
", latitude=" + latitude +
|
||||||
|
", section='" + section + '\'' +
|
||||||
|
", introduction='" + introduction + '\'' +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
driverClassName=com.mysql.jdbc.Driver
|
||||||
|
url=jdbc:mysql://127.0.0.1:3306/river?characterEncoding=utf8
|
||||||
|
username=root
|
||||||
|
password=root
|
||||||
|
# 初始化连接数量
|
||||||
|
initialSize=5
|
||||||
|
# 最大连接数
|
||||||
|
maxActive=10
|
||||||
|
# 最大等待时间
|
||||||
|
maxWait=3000
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,76 @@
|
|||||||
|
package web.servlet.others;
|
||||||
|
|
||||||
|
import domain.WaterLevel;
|
||||||
|
import service.WaterLevelService;
|
||||||
|
import service.impl.WaterLevelServiceImpl;
|
||||||
|
|
||||||
|
import javax.servlet.ServletContext;
|
||||||
|
import javax.servlet.ServletException;
|
||||||
|
import javax.servlet.ServletOutputStream;
|
||||||
|
import javax.servlet.annotation.WebServlet;
|
||||||
|
import javax.servlet.http.HttpServlet;
|
||||||
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.URLEncoder;
|
||||||
|
import java.sql.Timestamp;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author laoyingyong
|
||||||
|
* @date: 2020-02-05 10:27
|
||||||
|
*/
|
||||||
|
@WebServlet("/DownloadFileServlet")
|
||||||
|
public class DownloadFileServlet extends HttpServlet
|
||||||
|
{
|
||||||
|
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
|
||||||
|
{
|
||||||
|
ServletOutputStream outputStream = response.getOutputStream();//网络字节输出流
|
||||||
|
WaterLevelService service=new WaterLevelServiceImpl();
|
||||||
|
List<WaterLevel> weekData = service.findWeekData();
|
||||||
|
|
||||||
|
outputStream.write(("河流"+"\t"+"测站名"+"\t"+"时间"+"\t"+"水位"+"\t"+"流量"+"\t"+"超警戒(汛限)水位"+"\n").getBytes());
|
||||||
|
outputStream.write("-----------------------------------------最近七天的水位数据-------------------------------------------\n".getBytes());
|
||||||
|
for (WaterLevel item : weekData)
|
||||||
|
{
|
||||||
|
String riverName = item.getRiverName();
|
||||||
|
String siteName = item.getSiteName();
|
||||||
|
Timestamp collectionDate = item.getCollectionDate();
|
||||||
|
SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd HH:mm");
|
||||||
|
String format = simpleDateFormat.format(collectionDate);
|
||||||
|
Double waterLevel = item.getWaterLevel();
|
||||||
|
Double flow = item.getFlow();
|
||||||
|
Double over = item.getOver();
|
||||||
|
|
||||||
|
outputStream.write((riverName+"\t"+siteName+"\t"+format+"\t"+waterLevel+"\t"+flow+"\t"+over+"\n").getBytes());
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
String filename = request.getParameter("filename");
|
||||||
|
|
||||||
|
|
||||||
|
ServletContext servletContext = request.getServletContext();
|
||||||
|
|
||||||
|
//设置响应的mime类型
|
||||||
|
String mimeType = servletContext.getMimeType(filename);
|
||||||
|
response.setContentType(mimeType);
|
||||||
|
|
||||||
|
|
||||||
|
String encodeFileName = URLEncoder.encode(filename, "utf-8");//编码,解决文件中文乱码问题
|
||||||
|
response.setHeader("content-disposition","attachment;filename="+encodeFileName);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
|
||||||
|
{
|
||||||
|
|
||||||
|
this.doPost(request, response);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,80 @@
|
|||||||
|
package web.servlet.others;
|
||||||
|
|
||||||
|
import domain.WaterLevel;
|
||||||
|
import domain.WaterQuality;
|
||||||
|
import service.WaterLevelService;
|
||||||
|
import service.WaterQualityService;
|
||||||
|
import service.impl.WaterLevelServiceImpl;
|
||||||
|
import service.impl.WaterQualityServiceImpl;
|
||||||
|
|
||||||
|
import javax.servlet.ServletContext;
|
||||||
|
import javax.servlet.ServletException;
|
||||||
|
import javax.servlet.ServletOutputStream;
|
||||||
|
import javax.servlet.annotation.WebServlet;
|
||||||
|
import javax.servlet.http.HttpServlet;
|
||||||
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.URLEncoder;
|
||||||
|
import java.sql.Timestamp;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author laoyingyong
|
||||||
|
* @date: 2020-02-05 10:27
|
||||||
|
*/
|
||||||
|
@WebServlet("/DownloadFileServlet2")
|
||||||
|
public class DownloadFileServlet2 extends HttpServlet
|
||||||
|
{
|
||||||
|
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
|
||||||
|
{
|
||||||
|
ServletOutputStream outputStream = response.getOutputStream();//网络字节输出流
|
||||||
|
WaterQualityService service=new WaterQualityServiceImpl();
|
||||||
|
List<WaterQuality> weekData = service.findWeekData();
|
||||||
|
|
||||||
|
outputStream.write(("测站名"+"\t"+"时间"+"\t"+"PH"+"\t"+"溶解氧"+"\t"+"氨氮"+"\t"+"高猛酸钾盐指数"+"\t"+"总有机碳"+"\t"+"水质类别"+"\n").getBytes());
|
||||||
|
outputStream.write("---------------------------------------------------------------最近七天的水质数据--\n".getBytes());
|
||||||
|
for (WaterQuality item : weekData)
|
||||||
|
{
|
||||||
|
String belongStation = item.getBelongStation();
|
||||||
|
|
||||||
|
Timestamp dateTime = item.getDateTime();
|
||||||
|
SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd HH:mm");
|
||||||
|
String format = simpleDateFormat.format(dateTime);
|
||||||
|
Double aDouble = item.getpH();
|
||||||
|
Double aDouble1 = item.getdO();
|
||||||
|
Double aDouble2 = item.getnH4();
|
||||||
|
Double aDouble3 = item.getcODMn();
|
||||||
|
Double aDouble4 = item.gettOC();
|
||||||
|
String level = item.getLevel();
|
||||||
|
|
||||||
|
outputStream.write((belongStation+"\t"+format+"\t"+aDouble+"\t"+aDouble1+"\t"+aDouble2+"\t"+aDouble3+"\t"+aDouble4+"\t"+level+"\n").getBytes());
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
String filename = request.getParameter("filename");
|
||||||
|
|
||||||
|
|
||||||
|
ServletContext servletContext = request.getServletContext();
|
||||||
|
|
||||||
|
//设置响应的mime类型
|
||||||
|
String mimeType = servletContext.getMimeType(filename);
|
||||||
|
response.setContentType(mimeType);
|
||||||
|
|
||||||
|
|
||||||
|
String encodeFileName = URLEncoder.encode(filename, "utf-8");//编码,解决文件中文乱码问题
|
||||||
|
response.setHeader("content-disposition","attachment;filename="+encodeFileName);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
|
||||||
|
{
|
||||||
|
|
||||||
|
this.doPost(request, response);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,130 @@
|
|||||||
|
package web.servlet.others;
|
||||||
|
|
||||||
|
import domain.WaterQuality;
|
||||||
|
import org.apache.commons.fileupload.FileItem;
|
||||||
|
import org.apache.commons.fileupload.FileUploadException;
|
||||||
|
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
|
||||||
|
import org.apache.commons.fileupload.servlet.ServletFileUpload;
|
||||||
|
import service.WaterQualityService;
|
||||||
|
import service.impl.WaterQualityServiceImpl;
|
||||||
|
|
||||||
|
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 java.io.*;
|
||||||
|
import java.sql.Timestamp;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author laoyingyong
|
||||||
|
* @date: 2020-02-11 12:12
|
||||||
|
*/
|
||||||
|
@WebServlet("/UploadServlet")
|
||||||
|
public class UploadServlet extends HttpServlet
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
|
||||||
|
{
|
||||||
|
|
||||||
|
int count=0;
|
||||||
|
WaterQualityService service=new WaterQualityServiceImpl();
|
||||||
|
|
||||||
|
|
||||||
|
request.setCharacterEncoding("UTF-8");
|
||||||
|
//String type=request.getParameter("type");
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 配置上传参数
|
||||||
|
DiskFileItemFactory factory = new DiskFileItemFactory();
|
||||||
|
ServletFileUpload upload = new ServletFileUpload(factory);
|
||||||
|
// 解析请求的内容提取文件数据
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
List<FileItem> formItems = upload.parseRequest(request);
|
||||||
|
|
||||||
|
|
||||||
|
// 迭代表单数据
|
||||||
|
for (FileItem item : formItems)
|
||||||
|
{
|
||||||
|
// 处理不在表单中的字段
|
||||||
|
if (!item.isFormField())
|
||||||
|
{
|
||||||
|
String fileName = item.getName(); //获取上传的文件名
|
||||||
|
String fileType=fileName.substring(fileName.lastIndexOf(".")+1);
|
||||||
|
//定义上传文件的存放路径
|
||||||
|
String path = request.getServletContext().getRealPath("/upload");
|
||||||
|
//定义上传文件的完整路径
|
||||||
|
fileName= new SimpleDateFormat("yyyyMMddhhmmss").format(new Date()).toString();
|
||||||
|
fileName+="."+fileType; //将文件名字改为时间,避免重名文件
|
||||||
|
String filePath = String.format("%s\\%s",path,fileName);
|
||||||
|
File storeFile = new File(filePath);
|
||||||
|
// 在控制台输出文件的上传路径
|
||||||
|
System.out.println(path);
|
||||||
|
System.out.println(filePath);
|
||||||
|
|
||||||
|
// 保存文件到硬盘
|
||||||
|
item.write(storeFile);
|
||||||
|
|
||||||
|
BufferedReader bufferedReader=new BufferedReader(new InputStreamReader(new FileInputStream(filePath),"utf-8"));//缓冲字符输入流、转换流
|
||||||
|
String line=null;
|
||||||
|
|
||||||
|
while((line=bufferedReader.readLine())!=null)
|
||||||
|
{
|
||||||
|
//System.out.println(line);
|
||||||
|
String[] split = line.split("\t");
|
||||||
|
System.out.println(Arrays.toString(split));
|
||||||
|
WaterQuality waterQuality=new WaterQuality();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
waterQuality.setBelongStation(split[0]);
|
||||||
|
waterQuality.setDateTime(Timestamp.valueOf(split[1]+":00"));
|
||||||
|
if(!split[2].equals("null"))
|
||||||
|
{waterQuality.setpH(Double.parseDouble(split[2]));}
|
||||||
|
if(!split[3].equals("null"))
|
||||||
|
{waterQuality.setdO(Double.parseDouble(split[3]));}
|
||||||
|
if(!split[4].equals("null"))
|
||||||
|
{waterQuality.setnH4(Double.parseDouble(split[4]));}
|
||||||
|
if(!split[5].equals("null"))
|
||||||
|
{waterQuality.setcODMn(Double.parseDouble(split[5]));}
|
||||||
|
if(!split[6].equals("null"))
|
||||||
|
{waterQuality.settOC(Double.parseDouble(split[6]));}
|
||||||
|
if(!split[7].equals("null"))
|
||||||
|
{waterQuality.setLevel(split[7]);}
|
||||||
|
} catch (Exception e)
|
||||||
|
{
|
||||||
|
System.out.println(e);
|
||||||
|
}
|
||||||
|
boolean b = service.addOne(waterQuality);
|
||||||
|
if(b)
|
||||||
|
{
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (FileUploadException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
request.setAttribute("message",count);
|
||||||
|
// 跳转到 message.jsp
|
||||||
|
getServletContext().getRequestDispatcher("/message.jsp").forward(
|
||||||
|
request, response);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
|
||||||
|
{
|
||||||
|
|
||||||
|
this.doPost(request, response);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,128 @@
|
|||||||
|
package web.servlet.others;
|
||||||
|
|
||||||
|
import domain.WaterLevel;
|
||||||
|
import domain.WaterQuality;
|
||||||
|
import org.apache.commons.fileupload.FileItem;
|
||||||
|
import org.apache.commons.fileupload.FileUploadException;
|
||||||
|
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
|
||||||
|
import org.apache.commons.fileupload.servlet.ServletFileUpload;
|
||||||
|
import service.WaterLevelService;
|
||||||
|
import service.WaterQualityService;
|
||||||
|
import service.impl.WaterLevelServiceImpl;
|
||||||
|
import service.impl.WaterQualityServiceImpl;
|
||||||
|
|
||||||
|
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 java.io.*;
|
||||||
|
import java.sql.Timestamp;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author laoyingyong
|
||||||
|
* @date: 2020-02-11 12:12
|
||||||
|
*/
|
||||||
|
@WebServlet("/UploadServlet2")
|
||||||
|
public class UploadServlet2 extends HttpServlet
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
|
||||||
|
{
|
||||||
|
|
||||||
|
int count=0;
|
||||||
|
WaterLevelService service=new WaterLevelServiceImpl();
|
||||||
|
|
||||||
|
|
||||||
|
request.setCharacterEncoding("UTF-8");
|
||||||
|
//String type=request.getParameter("type");
|
||||||
|
|
||||||
|
try {
|
||||||
|
// 配置上传参数
|
||||||
|
DiskFileItemFactory factory = new DiskFileItemFactory();
|
||||||
|
ServletFileUpload upload = new ServletFileUpload(factory);
|
||||||
|
// 解析请求的内容提取文件数据
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
List<FileItem> formItems = upload.parseRequest(request);
|
||||||
|
|
||||||
|
|
||||||
|
// 迭代表单数据
|
||||||
|
for (FileItem item : formItems)
|
||||||
|
{
|
||||||
|
// 处理不在表单中的字段
|
||||||
|
if (!item.isFormField())
|
||||||
|
{
|
||||||
|
String fileName = item.getName(); //获取上传的文件名
|
||||||
|
String fileType=fileName.substring(fileName.lastIndexOf(".")+1);
|
||||||
|
//定义上传文件的存放路径
|
||||||
|
String path = request.getServletContext().getRealPath("/upload");
|
||||||
|
//定义上传文件的完整路径
|
||||||
|
fileName= new SimpleDateFormat("yyyyMMddhhmmss").format(new Date()).toString();
|
||||||
|
fileName+="."+fileType; //将文件名字改为时间,避免重名文件
|
||||||
|
String filePath = String.format("%s\\%s",path,fileName);
|
||||||
|
File storeFile = new File(filePath);
|
||||||
|
// 在控制台输出文件的上传路径
|
||||||
|
System.out.println(path);
|
||||||
|
System.out.println(filePath);
|
||||||
|
|
||||||
|
// 保存文件到硬盘
|
||||||
|
item.write(storeFile);
|
||||||
|
|
||||||
|
BufferedReader bufferedReader=new BufferedReader(new InputStreamReader(new FileInputStream(filePath),"utf-8"));//缓冲字符输入流、转换流
|
||||||
|
String line=null;
|
||||||
|
|
||||||
|
while((line=bufferedReader.readLine())!=null)
|
||||||
|
{
|
||||||
|
//System.out.println(line);
|
||||||
|
String[] split = line.split("\t");
|
||||||
|
System.out.println(Arrays.toString(split));
|
||||||
|
WaterLevel waterLevel=new WaterLevel();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
waterLevel.setRiverName(split[0]);
|
||||||
|
waterLevel.setSiteName(split[1]);
|
||||||
|
waterLevel.setCollectionDate(Timestamp.valueOf(split[2]+":00"));
|
||||||
|
if(!split[3].equals("null"))
|
||||||
|
{waterLevel.setWaterLevel(Double.parseDouble(split[3]));}
|
||||||
|
if(!split[4].equals("null"))
|
||||||
|
{waterLevel.setFlow(Double.parseDouble(split[4]));}
|
||||||
|
if(!split[5].equals("null"))
|
||||||
|
{waterLevel.setOver(Double.parseDouble(split[5]));}
|
||||||
|
} catch (Exception e)
|
||||||
|
{
|
||||||
|
System.out.println(e);
|
||||||
|
}
|
||||||
|
boolean b = service.addWaterLevelInfo(waterLevel);
|
||||||
|
if(b)
|
||||||
|
{
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (FileUploadException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
request.setAttribute("message",count);
|
||||||
|
// 跳转到 message.jsp
|
||||||
|
getServletContext().getRequestDispatcher("/otherPage/message2.jsp").forward(
|
||||||
|
request, response);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
|
||||||
|
{
|
||||||
|
|
||||||
|
this.doPost(request, response);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue