New User? Sign Up  |  Sign In  |  Help
Barcode support and
tutorials from IDAutomation
and the community.
Click for the BBB Business Review of this Computers Hardware, Software & Services in Tampa FL
Resolved Questions

How to read a data text file into the java font encoder?

We have a text file with data that we need to encode as Code 128 using your java font encoder. How do I pass my data to the encoder? Can you provide a very basic example?

image


01-18-15     9.1 year(s) ago    

  Report Abuse

 

Ben

Best Answer

The example describes how to encode the data in a text file by reading it into the Java application and passing it to another text file as encoded data.

Download the barcode fonts and Java font encoder.
Set up the environment so that it can use the IDAutomation java font encoder class.



STEP 1
To read/encode a data text file into a Java application and receive the encoded output, create two text files:

data.txt (the file that has the data to encode)
encodeddata.txt (the file that will receive the encoded data)

image


STEP 2
Create a bat file that compiles and runs the application. After java [projectname], use the > symbol and the [encodeddata file]. This will pass the System.out.println data to this file once the reader is set up.

Example

javac C:classpathBarcodeProjectBarcode1.java
java Barcode1 > encodeddata.txt
Pause



STEP 3
Add File streaming to the application/project.
image

(text example of code)
import java.io.*;
import com.idautomation.*;

class Barcode1
{
public static void main ( String [] args )

{
try
{
// Open the file that is the first
FileInputStream fstream = new FileInputStream("data.txt");


//Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));


//Linear Barcode object
LinearFontEncoder FontEncoder = new LinearFontEncoder();

//Set ApplyTilde (When set to True encodes
boolean ApplyTilde = true;

//Creates the DataToEncode String
String DataToEncode;

//Read File Line By Line
while ((DataToEncode = br.readLine()) != null) {

// Encode the data for Code 128 Auto
System.out.println(FontEncoder.Code128(DataToEncode,ApplyTilde));
}
//Close the input stream
in.close();
}

catch (Exception e)
{
//Catch exception if any
System.err.println("Error: " + e.getMessage());
}

}
}


STEP 4
Run the application and after it completes, open the encoded data file.

image

Posted 9.1 year(s) ago

(0)
(0)
  Report Abuse
 
Find Interesting
 
Email to Others
 
Bookmark
 
Subscribe to Answer Alert
No comments yet.     Be the first to comment.

Email this question link to friends
You must enter an email address, if name is entered or vice-versa for each friend.
Friend #1 -
Friend #2 -
Friend #3 -
Friend #4 -
Friend #5 -
  Your comment on this question
  |         |  
bold  italic  underline  strike       big  small       superscript  subscript 
  Allows to add a link. Added links would only be converted to actual clickable link, when the domain of the link is white-listed by administrator.
Caption :
Link URL :
(Must starts with "http://")
Add  |   Cancel
  Allow to insert an image. Must be among the following file types - *.jpg, *.gif, *.png & *.bmp.
Image Url :   Upload New
(Image url must always starts with " http:// ")
Width : pixels
(Must not be greater than 450px. Enter 0px for no resize)
Add  |   Cancel
  Allow to insert YouTube video. Insert the video embed code.
Embed Code :
Add  |   Cancel
Up to 5000 Characters are allowed. Current Count: 0
  Your comment on this answer
  |         |  
bold  italic  underline  strike       big  small       superscript  subscript 
  Allow you to add a link. Added links would only be converted to actual clickable link, when the domain of the link is white-listed by administrator.
Caption :
Link URL :
(Must start with "http://" or "https://")
Add  |   Cancel
  Allow to insert an image. Must be among the following file types - *.jpg, *.gif, *.png & *.bmp.
Image Url :   Upload New
(Image url must always start with "http://" or "https://")
Width : pixels
(Must not be greater than 450px. Enter 0px for no resize)
Add  |   Cancel
  Allow to insert YouTube video. Insert the video embed code.
Embed Code :
Add  |   Cancel
Up to 5000 characters are allowed. Current Count: 0

You may answer and comment on any thread according to the Terms and Conditions.

 © Copyright 2021 IDAutomation.com, Inc., All Rights Reserved. Legal Notices.

 Barcode Fonts | Components | Scanners | Support | Contact Us
Training Videos on YouTube Join us on Google Plus Join us on LinkedIn Follow us on Twitter Like us on Facebook