Unknown URI:content://downloads/public_downloads 해결방법
·
dev/android
안드로이드 Unknown URI:content://downloads/public_downloads 해결 방법 안드로이드 이미지 파일 업로시 다운로드 관리자에서 다운로드 디렉토리에 있는 이미지 가져올떄 Unknown URI:content://downloads/public_downloads 오류가 발생하는 경우가 있다. android 8.0 부터 content provider로 다운로드 테이블 접근시 Unknown URI: content://downloads/public_downloads 이런 오류를 발생한다. 이 방법을 해결하기 위해서 선택한 이미지를 캐시디렉토리에 저장 시킨후 그 이미지 경로로 이미지를 업로드 하면 된다. String id = DocumentsContract.getDocumentId(ur..
JAVA 파일 가져오기
·
dev/java
JAVA 파일 가져오기 class OpenFileListener implements ActionListener {JFileChooser chooser;JLabel jLabel; public OpenFileListener(JLabel jLabel) {chooser = new JFileChooser();this.jLabel = jLabel;} @Overridepublic void actionPerformed(ActionEvent arg0) { FileNameExtensionFilter filter = new FileNameExtensionFilter("txt", "txt");chooser.setFileFilter(filter); int ret = chooser.showOpenDialog(null); if (..
JAVA 엑셀 파일 읽기 & 쓰기
·
dev/java
엑셀 파일 읽어서 쓰기 void WriteExcel() { String path = excel_save_path; // 읽을 파일 경로 try {File file = new File(path);FileInputStream inputStream = new FileInputStream(file);XSSFWorkbook xworkbook = new XSSFWorkbook(inputStream); // 2007 이후 버전(xlsx파일) XSSFSheet curSheet; // 현재 sheetHSSFCell curCell; // 현재 cellXSSFRow curRow; // 현재 row CellStyle cellStyle = xworkbook.createCellStyle();cellStyle.setAlignmen..
안드로이드 underline center line 적용방법
·
dev/android
android underline center line 적용방법안드로이드 개발을 하다보면 underline 과 center line 을 사용하는 경우가 있는데요 예를 들어 링크 같은경우의 underline을 사용하고 기존의 걸 다른걸로 바꿨을때 center line을 사용합니다. 자바 소스로 쉽게 구현이 가능한데요 오늘을 그 방버을 알려드릴게요 ㅎㅎ 소스코드 한 줄로 underline, center line을 만들 수 있습니다. // Underline TextView m_tvUnderlineText = findViewById(R.id.tv_underlinetext); // Centerline TextView m_tvCenterlineText = findViewById(R.id.tv_centerlinetex..