Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 555 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 555 Bytes

Generate Multiple QR codes at once

Generate multiple QR codes in Java from an array of data.

Simply use the runAndGenerate method as follows and you are good to go :)

Initiliaze the dataset

    String[] dataList = {"www.chamath.tk", "www.surfedge.lk"};
		 
    String[] nameList = {"ChamathP", "SurfEdge"};
		
    String folder ="QR"; // make sure the folder is already available 
		    

Then Run call the method

    runAndGenerate(dataList, nameList, folder);

Simply make a whole lot of QR's just with one click