my java code of the function:

package com.util;

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random; import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder; /**
* @ClassName: CaptchaUtil
* @Description: 关于验证码的工具类
* @author 无名
* @date 2016-5-7 上午8:33:08
* @version 1.0
*/
public final class CaptchaUtil
{
private CaptchaUtil(){} /*
* 随机字符字典
*/
private static final char[] CHARS = { '2', '3', '4', '5', '6', '7', '8',
'9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M',
'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' }; /*
* 随机数
*/
private static Random random = new Random(); /*
* 获取6位随机数
*/
private static String getRandomString()
{
StringBuffer buffer = new StringBuffer();
for(int i = 0; i < 6; i++)
{
buffer.append(CHARS[random.nextInt(CHARS.length)]);
}
return buffer.toString();
} /*
* 获取随机数颜色
*/
private static Color getRandomColor()
{
return new Color(random.nextInt(255),random.nextInt(255),
random.nextInt(255));
} /*
* 返回某颜色的反色
*/
private static Color getReverseColor(Color c)
{
return new Color(255 - c.getRed(), 255 - c.getGreen(),
- c.getBlue());
} public static void outputCaptcha(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException
{ response.setContentType("image/jpeg"); String randomString = getRandomString();
request.getSession(true).setAttribute("randomString", randomString); int width = 100;
int height = 30; Color color = getRandomColor();
Color reverse = getReverseColor(color); BufferedImage bi = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
Graphics2D g = bi.createGraphics();
g.setFont(new Font(Font.SANS_SERIF, Font.BOLD, 16));
g.setColor(color);
g.fillRect(0, 0, width, height);
g.setColor(reverse);
g.drawString(randomString, 18, 20);
for (int i = 0, n = random.nextInt(100); i < n; i++)
{
g.drawRect(random.nextInt(width), random.nextInt(height), 1, 1);
} // 转成JPEG格式
ServletOutputStream out = response.getOutputStream();
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
encoder.encode(bi);
out.flush();
}
}

First, I found that the awt library of java cannot be used on Linux.

So, must add parameters of jvm to run it.

-Djava.awt.headless=true \

As for the tomcat environment, u should add this line '-Djava.awt.headless=true \'  to the file of 'catalina.sh' for 8 times.

If it not works. u can try these commands:

yum install libXp.so.
yum install dejagnu.noarch :1.4.-.el6
yum install dejavu-sans-mono-fonts.noarch 2.33-.el6
yum install dejavu-serif-fonts.noarch 2.33-.el6

Just try, I donot know why~

After doing these things, I still can't solve the problem,

the error log is:

It's the problem of this java class.

then I found that the 1.8 jdk has abandoned the class of com.sun.image.codec.jpeg.JPEGCodec & com.sun.image.codec.jpeg.JPEGImageEncoder

So I change the code from

        BufferedImage bi = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
...........
// 转成JPEG格式
ServletOutputStream out = response.getOutputStream();
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
encoder.encode(bi);

to

        // 转成JPEG格式
ServletOutputStream out = response.getOutputStream();
ImageIO.write(bi, "JPEG", out);

And it worked:

最新文章

  1. 11、项目经理要阅读的书籍 - IT软件人员书籍系列文章
  2. Oracle 常见函数
  3. 【leetcode】Reverse Words in a String
  4. 在ArcGIS 10.3标注中竖排文字
  5. zoj1873 Let it Bead
  6. Mac OS X下环境搭建 Sublime Text 2 环境变量配置 开发工具配置Golang (Go语言)
  7. js原生设计模式——4安全的工厂方法模式之Factory方法模式
  8. linux --&gt; 系统信息命令
  9. Mysql 中的MVCC原理,undo日志的依赖
  10. eclipse 编辑代码区字体大小
  11. 机器学习笔记十三:Ensemble思想(上)
  12. 43. Multiply Strings (大数乘法)
  13. 【Elasticsearch学习之一】Elasticsearch
  14. HDU 4496 D-City(逆向并查集)
  15. redis 查询key数量
  16. flask基础之请求处理核心机制(五)
  17. MySQL对索引的使用
  18. HDUOJ---------2255奔小康赚大钱
  19. jquery中选择块并改变属性值的方法
  20. python爬虫实战(九)--------拉勾网全站职位(CrawlSpider)

热门文章

  1. [WebKit内核] JavaScript引擎深度解析--基础篇(一)字节码生成及语法树的构建详情分析
  2. 现场打印智能无线PDA安卓POS 条码识别、打印、数据采集销售开单收银管理软件
  3. js/jQuery使用过程中常见问题
  4. 关于handler 和 looper 的问题
  5. centos下编译安装lnmp
  6. ElasticSearch问题记录
  7. Windows Commands and API
  8. js截取中英文字符串、标点符号无乱码示例解读
  9. Cloud Engine:大杀器如何炼成
  10. Windows下ADT环境搭建