在java中生成code39条形码数据?
我正在尝试生成 code39 数据。它有一些要求如下:
/*
Code 39 Valid data char set:
0, 1, 2, 3, 4, 5, 6, 7, 8, 9 (Digits)
A - Z (Uppercase letters)
- (Dash), $ (Dollar), % (Percentage), (Space), . (Point), / (Slash), + (Plus)
Code 39 extension Valid data char set:
All ASCII 128 characters
*/
// Code 39 encodes upper case chars only, for lower case chars, use Code 39 extension
barcode.setData("123456789012");
现在我想知道它是否有生成数据的长度以及如何生成它?
谢谢
I'm trying to generate code39 data. It has some requirement as follows:
/*
Code 39 Valid data char set:
0, 1, 2, 3, 4, 5, 6, 7, 8, 9 (Digits)
A - Z (Uppercase letters)
- (Dash), $ (Dollar), % (Percentage), (Space), . (Point), / (Slash), + (Plus)
Code 39 extension Valid data char set:
All ASCII 128 characters
*/
// Code 39 encodes upper case chars only, for lower case chars, use Code 39 extension
barcode.setData("123456789012");
Now I want to know if it has a length for the generated data and how to generate it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据维基百科,代码 39 被限制为 43 个字符。为了生成它的编码数据,我已经使用以下代码:
According to Wikipedia Code 39 is restricted to 43 characters.In order to generate it's encoding data I've used the following code:
请考虑使用 Java 字母库 (JAL)。
它基本上是一个库,可以帮助您在不同的“字母”之间进行转换,例如 Code39 和 Decimal。
您可以在那里使用提供的 Code39 字母表,并且它有示例。
例如,如果您想将数据库 ID 转换为相应的 Code39,则非常有用。
Please consider using the Java Alphabet Library (JAL).
It is basically a library that helps you to convert between different "alphabets" like Code39 and Decimal, for instance.
You can use the provided Code39 alphabet there, and it has examples.
Useful if you want to convert a database id to the corresponding Code39, for example.