일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Android
- SO 파일
- java
- Objective C
- ios
- v8 engine xcode build
- V8 Engine
- embedd
- 공인인증서 정보
- Google V8 Engine
- Android NDK시스템
- 인증서 정보 뽑아내기
- sha1 convert hashkey
- so file
- ios framework
- 공인인증서 만료일
- 안드로이드
- Magnify Anim
- appbarlayout
- android log dump
- FlexiblePageView
- Push
- apk 다운사이징
- IMAGE
- JavaScript Engine
- apns
- IOS10
- Status Bar
- apache
- PageControl
- Today
- Total
목록java (9)
caTea 블로그
import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.io.OutputStream;import java.net.URL;import java.security.SecureRandom;import java.security.cert.X509Certificate;import java.util.ArrayList;import java.util.Map; import javax.net.ssl.HttpsURLConnection;import javax.net.ssl.SSLContext;import javax.net.ssl.SSLSocketFactory;import javax.net.ssl.Trus..
/* * Copyright (C) 2015 Vincent Mi * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,..
Barcode barcode = BarcodeFactory.createCode128(lot);barcode.setBarHeight(printHeight);barcode.setBarWidth(printWidth);File file = new File(barcodePath + lot + ".png");if(file.exists() == true){obj.setLot_img(returnBarcodePath + lot + ".png");urlArray.add(obj);continue;}BarcodeImageHandler.savePNG(barcode, file);
필요 라이브러리-------------------------------------- 소스 import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.InputStream;import java.io.OutputStream;import java.util.UUID; import org.w3c.tidy.Tidy;import org.xhtmlrenderer.pdf.ITextFontResolver;import org.xhtmlrenderer.pdf.ITextRenderer; import com.lowagie.text.pdf.BaseFont; public class PdfConverter { publi..
javax.mail mail 1.4.7 import java.util.Date;import java.util.Properties; import javax.mail.BodyPart;import javax.mail.PasswordAuthentication;import javax.mail.Session;import javax.mail.Transport;import javax.mail.internet.InternetAddress;import javax.mail.internet.MimeBodyPart;import javax.mail.internet.MimeMessage;import javax.mail.internet.MimeMessage.RecipientType;import javax.mail.internet.M..
org.apache.poipoi3.12org.apache.poipoi-ooxml3.9 import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.InputStream;import java.util.ArrayList; import org.apache.poi.hssf.usermodel.HSSFCell;import org.apache.poi.hssf.usermodel.HSSFRow;import org.apache.poi.hssf.usermodel.HSSFSheet;import org.apache.poi.hssf.usermodel.HSSFWorkbook;import org.apache.poi.xssf.usermodel.XSSFCel..
commons-netcommons-net3.3 import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.OutputStream; import org.apache.commons.net.ftp.FTP;import org.apache.commons.net.ftp.FTPClient;import org.apache.commons.net.ftp.FTPClientConfig;import org.apache.commons.net.ftp.FTPFile;import org.apache.commons.net.ftp.FTPReply; public class FT..
uri 가 있어야한다 이부분은 activityresult에서 발췌 Uri selectImageUri = data.getData();String[] filePathColumn = { MediaStore.Images.Media.DATA };Cursor cursor = getContentResolver().query(selectImageUri, filePathColumn, null, null, null);cursor.moveToFirst();int columnIndex = cursor.getColumnIndex(filePathColumn[0]);String path = cursor.getString(columnIndex);cursor.close(); Utility.showProgressDialog(getApp..
private final int PHOTO_SIZE_LIMIT = (64 * 1024); private byte[] settingPhoto(String path){byte[] returnVal = null;try{ExifInterface exif;int orientation = 0;exif = new ExifInterface(path);orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_UNDEFINED); BitmapFactory.Options options = new BitmapFactory.Options();File f = new File(path);long f_size = f.lengt..