- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 servlet 将图像插入数据库。我在网页中创建了图像文件夹,我想将其发送到该文件夹。这是我的代码。
CompanyReg.jsp
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Colorlib Templates">
<meta name="author" content="Colorlib">
<meta name="keywords" content="Colorlib Templates">
<title>New Member?</title>
<link href="resources/CompanyReg/vendor/mdi-font/css/material-design-iconic-font.min.css" rel="stylesheet" media="all">
<link href="resources/CompanyReg/vendor/font-awesome-4.7/css/font-awesome.min.css" rel="stylesheet" media="all">
<link href="https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<link href="resources/CompanyReg/vendor/select2/select2.min.css" rel="stylesheet" media="all">
<link href="resources/CompanyReg/vendor/datepicker/daterangepicker.css" rel="stylesheet" media="all">
<link href="resources/CompanyReg/css/main.css" rel="stylesheet" media="all">
<link rel="shortcut icon" href="resources/CompanyReg/favicon.ico">
<link rel="stylesheet" type="text/css" href="resources/CompanyReg/css/normalize.css" />
<link rel="stylesheet" type="text/css" href="resources/CompanyReg/css/demo.css" />
<link rel="stylesheet" type="text/css" href="resources/CompanyReg/css/component.css" />
</head>
<body>
<div class="page-wrapper bg-gra-02 p-t-130 p-b-100 font-poppins">
<div class="wrapper wrapper--w680">
<div class="card card-4">
<div class="card-body">
<h2 class="title">Registration Form</h2>
<form method="POST" action="CompanyReg" enctype='multipart/form-data'>
<div class="row row-space">
<div class="col-2">
<div class="input-group">
<label class="label">Company Name</label>
<input class="input--style-4" type="text" name="company_name">
</div>
</div>
</div>
<div class="row row-space">
<div class="col-2">
<div class="input-group">
<label class="label">Established Date</label>
<div class="input-group-icon">
<input class="input--style-4 js-datepicker" type="text" name="est_year">
<i class="zmdi zmdi-calendar-note input-icon js-btn-calendar"></i>
</div>
</div>
</div>
</div>
<div class="row row-space">
<div class="col-2">
<div class="input-group">
<label class="label">Address</label>
<input class="input--style-4" type="text" name="address">
</div>
</div>
<div class="col-2">
<div class="input-group">
<label class="label">Email</label>
<input class="input--style-4" type="text" name="email">
</div>
</div>
<div class="col-2">
<div class="input-group">
<label class="label">Phone Number</label>
<input class="input--style-4" type="text" name="phone">
</div>
</div>
<div class="col-2">
<div class="input-group">
<label class="label">Password</label>
<input class="input--style-4" type="Password" name="password">
</div>
</div>
<div class="col-2">
<div class="input-group">
<label class="label">Repeat Password</label>
<input class="input--style-4" type="Password" name="repeatPassword">
</div>
</div>
</div>
<div class="col-2">
<div class="input-group">
<label class="label">Upload Company Photo</label>
<div class="box">
<input type="file" name="photo" id="file-1" class="inputfile inputfile-1" data-multiple-caption="{count} files selected" multiple style="display: none;" />
<label for="file-1"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="17" viewBox="0 0 20 17"><path d="M10 0l-5.2 4.9h3.3v5.1h3.8v-5.1h3.3l-5.2-4.9zm9.3 11.5l-3.2-2.1h-2l3.4 2.6h-3.5c-.1 0-.2.1-.2.1l-.8 2.3h-6l-.8-2.2c-.1-.1-.1-.2-.2-.2h-3.6l3.4-2.6h-2l-3.2 2.1c-.4.3-.7 1-.6 1.5l.6 3.1c.1.5.7.9 1.2.9h16.3c.6 0 1.1-.4 1.3-.9l.6-3.1c.1-.5-.2-1.2-.7-1.5z"/></svg> <span>Choose a file…</span></label>
</div>
</div>
</div>
<div class="p-t-15">
<button class="btn btn--radius-2 btn--blue" type="submit">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
<script src="resources/CompanyReg/vendor/jquery/jquery.min.js"></script>
<script src="resources/CompanyReg/vendor/select2/select2.min.js"></script>
<script src="resources/CompanyReg/vendor/datepicker/moment.min.js"></script>
<script src="resources/CompanyReg/vendor/datepicker/daterangepicker.js"></script>
<script src="resources/CompanyReg/js/global.js"></script>
</body>
</html>
这是我的 servlet 代码
package Company;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import javax.servlet.ServletException;
import javax.servlet.annotation.MultipartConfig;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.Part;
@MultipartConfig(maxFileSize = 16177215)
public class CompanyReg extends HttpServlet {
private static final String SAVE_DIR ="images";
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
try (PrintWriter out = response.getWriter()) {
/* TODO output your page here. You may use following sample code. */
out.println("<!DOCTYPE html>");
out.println("<html>");
out.println("<head>");
out.println("<title>Servlet CompanyReg</title>");
out.println("</head>");
out.println("<body>");
out.println("<h1>Servlet CompanyReg at " + request.getContextPath() + "</h1>");
out.println("</body>");
out.println("</html>");
}
}
// <editor-fold
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String savePath = "F:\\JAVA EE Final\\Java Final\\web" + File.separator +SAVE_DIR;
File fileSaveDir = new File(savePath);
String company_name = request.getParameter("company_name");
String company_email = request.getParameter("email");
String est_date = request.getParameter("est_year");
String company_address = request.getParameter("address");
String company_pasword = request.getParameter("password");
String company_contactno = request.getParameter("phone");
Part part = request.getPart("photo");
String filename = extractFileName(part);
try
{
Class.forName("com.mysql.jdbc.Driver");
Connection con= DriverManager.getConnection("jdbc:mysql://localhost:3306/javanew","root","");
PreparedStatement pst = con.prepareStatement(" insert into company (Name,Email,Est_date,Address,Password,ContactNo,Photo) values(?,?,?,?,?,?,?)");
pst.setString(1, company_name);
pst.setString(2, company_email);
pst.setString(3, est_date);
pst.setString(4, company_address);
pst.setString(5, company_pasword);
pst.setString(6, company_contactno);
String filePath = savePath + File.separator + filename;
pst.setString(7, filePath);
int rs=pst.executeUpdate();
if(rs>0)
{
getServletContext().getRequestDispatcher("").forward(request, response);
}
}
catch (Exception e)
{
PrintWriter out = response.getWriter();
out.print(e);
}
}
@Override
public String getServletInfo() {
return "Short description";
}
private String extractFileName(Part part) {
String contenDisp = part.getHeader("content-disposition");
String [] items = contenDisp.split(";");
for (String s : items)
{
if (s.trim().startsWith("filename"))
{
return s.substring(s.indexOf("=") + 2, s.length()-1);
}
}
return "";
}
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<servlet>
<servlet-name>CompanyReg</servlet-name>
<servlet-class>Company.CompanyReg</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>CompanyReg</servlet-name>
<url-pattern>/CompanyReg</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
</web-app>
我的数据库正确显示了路径,但在该文件夹中看不到图像。所以请告诉我该怎么做
最佳答案
是的,那是因为图像不在该文件夹中。因此,在提交表单时,您需要将图像复制到您创建的文件夹中。这是将图像复制到您的文件夹的示例代码
public void copyFile(String fileName,String fileType, InputStream in) {
try {
//relativeWebPath is the path to the folder you created in your web directory
File file = getUniqueFilename(new File(relativeWebPath+"/"+fileName));
try ( // write the inputStream to a FileOutputStream
OutputStream out = new FileOutputStream(new File(relativeWebPath + "/"+file.getName()))) {
int read = 0;
byte[] bytes = new byte[1024];
while ((read = in.read(bytes)) != -1) {
out.write(bytes, 0, read);
}
in.close();
out.flush();
}
} catch (IOException e) {
System.out.println(e);
}
}
//returns a file with a unique name in case an image with the same name
//already exist in the folder
private static File getUniqueFilename( File file )
{
String baseName = FilenameUtils.getBaseName( file.getName() );
String extension = FilenameUtils.getExtension( file.getName() );
int counter = 1;
while(file.exists())
{
file = new File( file.getParent(), baseName + "-" + (counter++) + "." + extension );
}
return file;
}
关于java - 使用servlet将图像路径插入数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55020721/
我有一个关于 Java Servlet 的问题。 假设我在 servlet 网页“somePage”上。我想登录(使用另一个 servlet,“登录”servlet)。所以我点击“somePage”上
如何将变量数组从一个 servlet 传递到另一个 servlet? 最佳答案 如果您要将当前请求传递给另一个servlet,则只需将其设置为请求属性即可。 request.setAttribute(
什么可能导致此错误? Caused by: jakarta.servlet.UnavailableException: Servlet class org.restlet.ext.servle
我的maven依赖树是这样的 我想问我maven如何解决这个冲突,有两个servlet-api.jar?提前谢谢你。 最佳答案 如果您想从 Velocity 工具中删除 servlet-api,您可以
config ProcessReg ProcessReg text HelloWorld1 public class config implements Serv
您好,我有一个关于 servlet 调用另一个 servlet 的问题 我有一个名为 Relay 的主 servlet,它将负责控制其他 servlet 用户将点击并将转发到 Relay servle
在我的 REST API 项目中,我已将 /* 映射到 RESTServlet,并且需要在同一 WAR 中托管静态内容。我更愿意将 /static/* 映射到 WAS liberty 提供的默认 se
响应映射在 Servlet 中如何工作? 每个响应如何知道清除特定 HTML 或 Handlebars 上的输出? 最佳答案 有一个 ember-java带有 Jersey REST 服务 的 git
有一个 @WebServlet(urlPatterns = "/myServlet/") .如果用户转到 myapp/myServlet/other ,我仍然希望我的 servlet 能够捕获。也就是
我正在使用 Filter 在我的所有页面中插入反点击劫持 header - 这工作正常,除了 JBoss EAP 6.3 容器管理的登录页面,这是更重要的页面之一拥有它。 登录页面根本不调用过滤器,登
我正在尝试使用 RequestDispatcher 将数据从一个 servlet 传递到另一个 servlet。这是我的调度程序代码。 String address; address = "/Java
我刚刚开始使用 Servlet,并设法让一些 Servlet 充当单独的 URL,用于填充数据库以进行一些虚拟测试。某种形式: public class Populate_ServletName ex
我是否需要同时配置app.servlet.version 和 grails.servlet.version? 前者在application.properties中,后者在BuildConfig.gro
在Myeclipse中我创建了一个名为web1的Web项目,并添加了一个名为servlet1的servlet,web.xml如下: servlet1 servlet1
这个问题在这里已经有了答案: How to run a background task in a servlet based web application? (5 个回答) 6年前关闭。 是否可以在
在我的 ManagedBean 中,如果我将范围从 @RequestScoped 更改为 @ViewScoped,我将收到以下错误堆栈。我该如何解决这个问题?不过,当我运行应用程序时,我可以在页面中看
这个问题已经有答案了: How do I execute multiple servlets in sequence? (2 个回答) 已关闭 3 年前。 我已经构建了jdbc-Servlet的代码,
我一直在徒劳地尝试实现 tomcat 9 的 jakarta servlet,而不是以前的 javax.servlet 实现(因为我的理解是 jakarta 包是前进的方向)。问题是,当我将浏览器指向
我是 Spring 新手,正在尝试使用 Maven 部署和运行我的第一个 Spring Web 应用程序。有关更多详细信息,请参阅 here (我昨天发布的一个问题): 现在,我遇到的问题是:当我尝试
我正在尝试学习如何使用 JSP。我遇到了一些毫无意义的事情,至少在我看来是这样: 当我尝试运行时: response.getWriter().println(m.getDb().printAll())
我是一名优秀的程序员,十分优秀!