일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jQuery
- android error
- Java
- apache gzip
- 안드로이드
- Eclipse
- Exception
- MySQL
- Android Apk 이름
- Program type already present
- CSS사용법
- Android Apk 이름 변경
- JavaScript
- release Apk
- java error
- spring
- DataTable
- release unsigned
- html
- FLUTTER
- Kotlin
- Android Apk
- R프로그래밍
- Firebase
- Android
- css
- fragment
- tomcat
- error
- android fragment
- Today
- Total
목록전체 글 (158)
selfstarter
Java 메모리 Stack, Heap 정리 // 1 int sum = 0; for (int i = 0; i < arr.length(); ++i) { int value = arr[i]; sum += value; } // 2 int sum = 0; int value = 0; for (int i = 0; i < arr.length(); ++i) { value = arr[i]; sum += value; }이곳을 참고하여 정리하였습니다 for문 안에 사용하는 변수는 for문 안에 선언하면 더 좋은 이유 2개의 소스코드의 차이는 value 선언이 for문 안인지, 밖인지 여부이다 결론적으로 두개의 소스는 메모리적으로 차이가 없다 value 변수가 for문 안에 선언되어있을 때 여러개의 다른 value변수가 생기므로..
자바 정규식 해당하는 문자열이 존재하는지 확인 유용한 테스트 사이트 : https://regex101.com/ // .은 모든 문자를 의미하고 *은 0개 이상을 의미한다 String match = ".*202005.*"; String txt1 = "202004.xlsx"; String txt2 = "202005.xlsx"; String txt3 = "4323202005123123.xlsx"; System.out.println("txt1 일치여부:"+txt1.matches(match)); System.out.println("txt2 일치여부:"+txt2.matches(match)); System.out.println("txt3 일치여부:"+txt3.matches(match));
Java Directory 전체 파일 목록 가져오기 File path = new File("D:\\"); File[] fileList = path.listFiles(); if (fileList.length > 0) { for (int i=0; i < fileList.length; ++i) { System.out.println(fileList[i]); } }
Java String to Int(Minus or decimal point) How to String to Int with Minus or decimal point String에서 숫자로 형변환하기 String num1 = "2000.000"; String num2 = "-400.0"; // Convert String to Float before Round.. after result is Int type int charge1 = Math.round(Float.parseFloat(num1)); int charge2 = Math.round(Float.parseFloat(num2));
FTP 치명적인 파일 전송 오류전송을 시작하지 못함 problem FTP에 파일을 드래그해서 FTP 서버로 UPLOAD 시키려고 하면 치명적인 파일 전송, 오류전송을 시작하지 못함 라는 에러메시지가 뜨면서 에러 발생 case 현재 upload하려는 파일이 사용중 solve 현재 upload 하려는 파일을 닫거나 그 파일을 사용하는 프로그램을 종료시킨다 그 외에도 다양한 에러가 발생하는데, upload가 실패하는 경우 permission이나 전송실패창에 전송실패내역이 있다면 다 삭제한다 만약 내려받는것이 실패한다면 내려받는 파일과 같은 이름을 가져서 덮여씌워지는 경우, 해당 파일이 실행중인지 확인한다
Ubuntu Linux Server Install https://ubuntu.com/download/server linux를 사용하고 싶다면 ubuntu server를 설치해야함 그리고 arm말고 amd 다운받을 것 ex) ubuntu-16.04.6-server-amd64 또 우분투 설치 중에 부팅 드라이브??인지 부팅...을 설치하겠냐고 하는데 반드시 설치할 것..(이것 때문에 자꾸 설치가 안됨..)
Android Error NotFoundException String resource ID Error NotFoundException: String resource ID #0xdac Cause setText할 때 넣는 인자가 String이 아니다 Solution modify Code holder.textView2.setText(itemListData.getMoney()); to holder.textView2.setText(Integer.toString(itemListData.getMoney()));
Kotlin Summary Kotlin Tutorial Benefit of Kotlin 1) Google I/O 2017에서 android의 공식언어로 지정되었고, Google에서 Kotlin 사용을 권장하고 있다(최근 android 예제에아예 JAVA 언어로 된 예제가 없는 경우도 있다) 2) Java에서 Asynctask가 없어졌고, kotlin에서 Coroutine을 사용하여 더 쉽고 간결하게 작업할 수 있다 3) 변수가 NullSafty한지 아닌지를 사용자가 지정하여 예외를 미연에 방지할 수 있다 4) Java와 Kotlin언어 호환 가능 function Unit은 return value가 없음을 의미한다. Unit을 생략해도 된다 $연산자를 통해 따옴표 안에 메시지를 출력할 수 있다. 또 ret..