일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Objective C
- 공인인증서 만료일
- Android
- JavaScript Engine
- IMAGE
- IOS10
- 안드로이드
- v8 engine xcode build
- android log dump
- Google V8 Engine
- apns
- Magnify Anim
- ios framework
- PageControl
- Push
- java
- Status Bar
- V8 Engine
- 공인인증서 정보
- appbarlayout
- ios
- so file
- embedd
- apk 다운사이징
- sha1 convert hashkey
- 인증서 정보 뽑아내기
- SO 파일
- Android NDK시스템
- apache
- FlexiblePageView
- Today
- Total
목록분류 전체보기 (55)
caTea 블로그
protected T process(URL url, boolean keepAilve , RequestMethod method, V param, class clazz) throws IOException { InoutStream is = null; OutputStram os = null; ReadableByteChannel rbc = null; try{ HttpURLConnection conn= (HttpURLConnection) url.openConnection; conn.setDoInput(true); conn.setDoOutput(true); conn.setRequestMethod(method.name()); if(keepAilve){ conn.setTequestProperty("Connection",..
맥 터미널에서 -curl -v 찾고자하는 URL 을 치면된다. 대신 https이여야 보안섹션이 나타나죠 헤더부분을 잘보면된다.
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..
안드로이드에서 쓰는 라이브러리 웹서버에서 쓰는 라이브러리 int index = filePath.lastIndexOf("/");String fileName = filePath.substring(index);File file = new File(filePath); MultipartEntityBuilder builder = MultipartEntityBuilder.create() .setCharset(Charset.forName("UTF-8")) .setMode(HttpMultipartMode.BROWSER_COMPATIBLE);builder.addPart("pictureFile", new FileBody(file)); // 키값은 서버 vo객체 의 변수명과 같아야한다builder.addTextBody("fi..
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..
원문 : http://mobileappdreams.blogspot.kr/2014/06/differences-between-ios-and-android.html Tuesday, June 24, 2014Differences between iPhone and Android Push Notifications: [APNS Vs GCM] The documentation on how push works are clearly explained here on the following links:iOS, Android,Windows The above references should help you to understand how push notification works. I felt it would be repetiti..
private SwipeMenuListView blockList = null; blockList = (SwipeMenuListView) findViewById(R.id.block_list); SwipeMenuCreator creator = new SwipeMenuCreator() { @Overridepublic void create(SwipeMenu menu) {SwipeMenuItem deleteItem = new SwipeMenuItem(BlockedFriendListActivity.this);deleteItem.setBackground(new ColorDrawable(Color.rgb(0xF9, 0x3F, 0x25)));deleteItem.setWidth(Utility.dip2pixel(Blocke..