资源简介
java web项目使用qrcode创建二维码方法示例,生成二维码图片目录在webroot目录下的qrcode文件夹下,生成前会自动判断目录是否存在并生成图片二维码。
代码片段和文件信息
package com.test;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.test.unti.QrcodeHelper;
public class getQrcode extends HttpServlet
{
/**
* The doGet method of the servlet.
*
* This method is called when a form has its tag value method equals to get.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doGet(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException
{
QrcodeHelper.getQrcode(request);
request.getRequestDispatcher(“show.jsp“).forward(request response);
// response.setContentType(“text/html“);
// PrintWriter out = response.getWriter();
// out.println(““);
// out.println(““);
// out.println(“ tle>A Servlet tle>“);
// out.println(“ “);
// out.print(“ This is “);
// out.print(this.getClass());
// out.println(“ using the GET method“);
// out.println(“ “);
// out.println(““);
// out.flush();
// out.close();
}
/**
* The doPost method of the servlet.
*
* This method is called when a form has its tag value method equals to post.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doPost(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException
{
doGet(request response);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1083 2018-06-11 09:54 WebQrcode\.classpath
文件 1334 2018-06-11 10:17 WebQrcode\.project
文件 522 2018-06-11 09:54 WebQrcode\.settings\.jsdtscope
文件 364 2018-06-11 09:54 WebQrcode\.settings\org.eclipse.jdt.core.prefs
文件 478 2018-06-11 09:54 WebQrcode\.settings\org.eclipse.wst.common.component
文件 414 2018-06-11 09:54 WebQrcode\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2018-06-11 09:54 WebQrcode\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2018-06-11 09:54 WebQrcode\.settings\org.eclipse.wst.jsdt.ui.superType.name
文件 1160 2018-06-11 10:53 WebQrcode\build\classes\com\test\getQrcode.class
文件 3063 2018-06-11 10:49 WebQrcode\build\classes\com\test\unti\QrcodeHelper.class
文件 2013 2018-06-11 10:53 WebQrcode\src\com\test\getQrcode.java
文件 2321 2018-06-11 10:49 WebQrcode\src\com\test\unti\QrcodeHelper.java
文件 922 2018-06-11 10:51 WebQrcode\WebRoot\index.jsp
文件 39 2018-06-11 09:54 WebQrcode\WebRoot\me
文件 448 2018-06-11 10:52 WebQrcode\WebRoot\show.jsp
文件 1038000 2018-06-11 09:55 WebQrcode\WebRoot\WEB-INF\lib\Qrcode-C.jar
文件 49836 2018-06-11 09:55 WebQrcode\WebRoot\WEB-INF\lib\qrcode-R.jar
文件 972 2018-06-11 09:56 WebQrcode\WebRoot\WEB-INF\web.xm
目录 0 2018-06-11 09:57 WebQrcode\build\classes\com\test\unti
目录 0 2018-06-11 09:56 WebQrcode\build\classes\com\test
目录 0 2018-06-11 09:57 WebQrcode\src\com\test\unti
目录 0 2018-06-11 09:56 WebQrcode\build\classes\com
目录 0 2018-06-11 09:56 WebQrcode\src\com\test
目录 0 2018-06-11 09:55 WebQrcode\WebRoot\WEB-INF\lib
目录 0 2018-06-11 09:56 WebQrcode\build\classes
目录 0 2018-06-11 09:56 WebQrcode\src\com
目录 0 2018-06-11 09:54 WebQrcode\WebRoot\me
目录 0 2018-06-11 09:54 WebQrcode\WebRoot\WEB-INF
目录 0 2018-06-11 09:54 WebQrcode\.settings
目录 0 2018-06-11 09:54 WebQrcode\build
............此处省略6个文件信息
相关资源
- 《Java 基础入门传智播客出品》_中文
- Head First_深入浅出Java(中文第2版)
- java人物行走
- java des算法实现加密文字以及图片
- beiyou Java作业 -4
- jsp+servlet+javabean jdbc连接数据库 用户登
- java中国象棋打谱软件
- 决策树算法--java
- 朴素贝叶斯java代码
- java编写的抽象工厂迷宫,文字式,非
- java迭代器模式实现正反向遍历
- Java程序员面试笔试宝典附录答案与勘
- java求解素数环问题
- 用Java写的一个简单爬虫,爬取京东图
- 基于Java_Web的小型酒店管理系统_徐耀
- java局域网聊天模拟qq
- 基于java的推荐系统实现源代码
- 用java编程语言RC4算法的加密和解密
- JAVAWEB录音上传服务器
- Java设计模式综合应用场景
- 计算机操作系统大作业—进程控制模
- java web 网上商城项目源码(jspservlet
- java网上商城项目源码jsp.servlet+javabe
- Java最全面试宝典 (PDF清晰版)
- Java Web从入门到精通 原盘光盘镜像
- java 采用ssl的socket交互
- ac自动机java版
- 编程模拟多进程共享临界资源最终版
- HDU题目java实现
- java socket异步长连接demo
评论
共有 条评论