如何使用java开发二维码代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用java开发二维码代码相关的知识,希望对你有一定的参考价值。

参考技术A 1: 使用SwetakeQRCode在Java项目中生成二维码
http://swetake.com/qr/ 下载地址
或着http://sourceforge.jp/projects/qrcode/downloads/28391/qrcode.zip
这个是日本人写的,生成的是我们常见的方形的二维码
可以用中文

如:5677777ghjjjjj

2: 使用BarCode4j生成条形码和二维码
BarCode4j网址:http://sourceforge.NET/projects/barcode4j/

barcode4j是使用datamatrix的二维码生成算法,为支持qr的算法
datamatrix是欧美的标准,qr为日本的标准,
barcode4j一般生成出来是长方形的
如:88777alec000yan
这个博客这方面说的挺清楚的:
http://baijinshan.iteye.com/blog/1004554

3:zxing
zxing 这个是google的
下载地址
http://code.google.com/p/zxing/downloads/list

Java代码:
import java.io.File;
import java.util.Hashtable;

import com.google.zxing.BarcodeFormat;
import com.google.zxing.EncodeHintType;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.client.j2se.MatrixToImageWriter;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.qrcode.QRCodeWriter;

public class QRCodeEvents

public static void main(String []args)throws Exception
String text = "你好";
int width = 100;
int height = 100;
String format = "png";
Hashtable hints= new Hashtable();
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
BitMatrix bitMatrix = new MultiFormatWriter().encode(text, BarcodeFormat.QR_CODE, width, height,hints);
File outputFile = new File("new.png");
MatrixToImageWriter.writeToFile(bitMatrix, format, outputFile);



4:google chart api就有实现二维码的方法
利用这个api,使用google appengine进行实现。

5:JS生成二维码
使用jQuery-qrcode生成二维码
先简单说一下jquery-qrcode,这个开源的三方库(可以从https://github.com/jeromeetienne/jquery-qrcode 获取),
qrcode.js 是实现二维码数据计算的核心类,
jquery.qrcode.js 是把它用jquery方式封装起来的,用它来实现图形渲染,其实就是画图(支持canvas和table两种方式)

支持的功能主要有:
Js代码:
text : "https://github.com/jeromeetienne/jquery-qrcode" //设置二维码内容

Js代码:
render : "canvas",//设置渲染方式
width : 256, //设置宽度
height : 256, //设置高度
typeNumber : -1, //计算模式
correctLevel : QRErrorCorrectLevel.H,//纠错等级
background : "#ffffff",//背景颜色
foreground : "#000000" //前景颜色
使用方式非常简单

Js代码:
jQuery('#output').qrcode(width:200,height:200,correctLevel:0,text:content);
经过简单实践,

使用canvas方式渲染性能还是非常不错的,但是如果用table方式,性能不太理想,特别是IE9以下的浏览器,所以需要自行优化一下渲染table的方式,这里就不细述了。
其实上面的js有一个小小的缺点,就是默认不支持中文。
这跟js的机制有关系,jquery-qrcode这个库是采用 charCodeAt() 这个方式进行编码转换的,
而这个方法默认会获取它的 Unicode 编码,一般的解码器都是采用UTF-8, ISO-8859-1等方式,
英文是没有问题,如果是中文,一般情况下Unicode是UTF-16实现,长度2位,而UTF-8编码是3位,这样二维码的编解码就不匹配了。

解决方式当然是,在二维码编码前把字符串转换成UTF-8,具体代码如下:
function utf16to8(str)
var out, i, len, c;
out = "";
len = str.length;
for(i = 0; i < len; i++)
c = str.charCodeAt(i);
if ((c >= 0x0001) && (c <= 0x007F))
out += str.charAt(i);
else if (c > 0x07FF)
out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F));
out += String.fromCharCode(0x80 | ((c >> 6) & 0x3F));
out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
else
out += String.fromCharCode(0xC0 | ((c >> 6) & 0x1F));
out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));


return out;

java使用foreach语句遍历二维数组如何实现?

弱弱的问一句:阶梯数组可以用foreach吗??

参考技术A public class Tautog //创建类
public static void main(String[] args) //主方法
int arr2[][] = 4, 3 , 1, 2 ; //定义二维数组
System.out.println("数组中的元素是:"); //提示信息
for (int x[] : arr2) //外层循环变量为一维数组
for (int e : x) //循环遍历每一个数组元素
if (e == x.length) //判断变量是二维数组中的最后一个元素
System.out.print(e); //输出二维数组的最后一个元素
else //如何不是二维数组中的最后一个元素
System.out.print(e + "、"); //输出信息




JDK1.5以上才能
参考技术B Java里面是有for循环的吧。抱着学习的观念来回答你的问题。参考了一下楼上两位的,自己写了个程序:
public class TestArray

public static void main(String[] args)
// 定义一个长度为10的数组
int a[][] = new int[10][8];
// 为数组中每个元素赋值
for (int i = 0; i < a.length; i++)
for (int j = 0; j < a[i].length; j++)
a[i][j] = i * j;



//用泛型遍历输出数组
for(int[] arr : a)
for(int arr2 : arr)
System.out.print(arr2+"\t");

//每打印完一个a[i][0]-a[i][8]就换行
System.out.println();



本回答被提问者采纳
参考技术C 自己试试。 习惯用for 参考技术D <c:forEach items="$array" var="item">
<c:forEach items="$item" var="data">
<span>$data</span>
</c:forEach>
</c:forEach>
第5个回答  2010-09-26 public class Test2
public static void main(String[] args) throws Exception

int[][] arr = new int[][]new int[]2,3,new int[]4,5;
for (int[] is : arr)
for (int i : is)
System.out.print(i + ", ");

System.out.println();


以上是关于如何使用java开发二维码代码的主要内容,如果未能解决你的问题,请参考以下文章

Android开发中如何定义和使用数组

java 如何使用多线程调用类的静态方法?

串口屏开发之二维码控件的使用总结——如何显示和更新二维码

串口屏开发之二维码控件的使用总结——如何显示和更新二维码

java 如何将二维数组的一列作为参数传进去 求代码

java使用foreach语句遍历二维数组如何实现?