본문 바로가기
728x90

Java30

datamatrix 생성 시 정사각형이 아닌 다른모양으로 생성될경우 itextpdf 에서 지원되지 않는 사이즈라 다시 정의해줘야함. private Image setDatamatrix(String text){ int[] barcodeDimensions = {10, 12, 14, 16, 18, 20, 22, 24, 26, 32, 36, 40, 44, 48, 52, 64, 72, 80, 88, 96, 104, 120, 132, 144}; BarcodeDatamatrix barcode = new BarcodeDatamatrix(); barcode.setOptions(BarcodeDatamatrix.DM_AUTO); Image image = null; try{ // try to generate the barcode, resizing as needed. for (int genera.. 2023. 4. 17.
자바 리스트 간단하게 재정렬 방법 List dataList = getPcbMacList(vo); dataList.sort(new Comparator() { @Override public int compare(SwhitechProcTopcover arg0, SwhitechProcTopcover arg1) { Date scanDe = arg0.getPcbMacScanDe(); Date scanDe2 = arg1.getPcbMacScanDe(); return scanDe.compareTo(scanDe2);//asc //return scanDe2.compareTo(scanDe);//desc } }); 바로 override compare 재정의 간단하게 재정렬~ 2022. 11. 24.
unirest https url 적용 unirest doc //http://kong.github.io/unirest-java/#requests SSLContext sslContext = new SSLContextBuilder().loadTrustMaterial(null, new TrustSelfSignedStrategy() { public boolean isTrusted(X509Certificate[] chain, String authType) { return true; } }).build(); HttpClient customHttpClient = HttpClients.custom().setSSLContext(sslContext).setSSLHostnameVerifier(new NoopHostnameVerifier()).build(); Un.. 2022. 6. 14.
mssql 컬럼추가 mssql 컬럼추가 alter table [테이블명] add [컬럼명] [타입] [옵션]; alter table [dbo].[Temp_Table] add [Age] int not null default(0); 2020. 5. 11.
728x90