Notice
Recent Posts
Recent Comments
Link
투케이2K
497. (kotlin/코틀린) [유틸 파일] getAssetLoadHtmlUrl : 프로젝트 내에 저장된 html 파일 로드 수행 본문
Kotlin
497. (kotlin/코틀린) [유틸 파일] getAssetLoadHtmlUrl : 프로젝트 내에 저장된 html 파일 로드 수행
투케이2K 2024. 5. 1. 11:00[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Kotlin
[소스 코드]
// -----------------------------------------------------------------------------------------
// TODO [SEARCH FAST] : [RETURN] getAssetLoadHtmlUrl : 프로젝트 내에 저장된 html 파일 로드 수행
// -----------------------------------------------------------------------------------------
fun getAssetLoadHtmlUrl(filePath: String): String {
/**
* // -----------------------------------------
* [getAssetLoadHtmlUrl 메소드 설명]
* // -----------------------------------------
* 1. 프로젝트 내에 저장된 html 파일 로드 수행
* // -----------------------------------------
* 2. 호출 방식 :
*
* C_App.getAssetLoadHtmlUrl("functionTest.html")
*
* // -----------------------------------------
* 3. 리턴 데이터 :
*
* file:///android_asset/functionTest.html
* // -----------------------------------------
* 4. 사전 준비 :
*
* 안드로이드 프로젝트에 assets 폴더 생성 후 html 파일 삽입 필요
* // -----------------------------------------
*/
// [리턴 값 선언]
var returnData = ""
var M_LOG = ""
// [로직 처리 실시]
try {
// [인풋 데이터 체크]
if (C_Util.stringNotNull(filePath) === true && filePath.contains(".html") == true) {
var fileUrl = "file:///android_asset"
fileUrl += if (filePath.startsWith("/") == true) {
filePath
} else {
"/$filePath"
}
fileUrl = fileUrl.trim { it <= ' ' }
// [리턴 변수 삽입]
returnData = fileUrl
M_LOG = "[Success] :: getAssetLoadHtmlUrl"
} else {
M_LOG = "[Error] :: Input Data Is Null"
}
} catch (e: Exception) {
M_LOG = "[Exception] :: " + e.message.toString()
S_Log._printStackTrace_(null, S_FinalMsg.LOG_BUG_STATE, null, e)
}
// [로그 출력 실시]
///*
// ===============================================================
S_Log._D_("프로젝트 내에 저장된 html 파일 로드 수행", arrayOf(
"INPUT :: $filePath",
"M_LOG :: $M_LOG",
"RETURN :: $returnData"
))
// ===============================================================
// */
// [리턴 반환 실시]
return returnData
}
반응형
'Kotlin' 카테고리의 다른 글
Comments