2
.dat
파일을 IP 조회에 사용하려고합니다. 파일 스칼라 코드에서 Databricks 파일 저장소에 :Databricks FileStore에서 파일을 사용하는 방법
java.io.FileNotFoundException: FileStore/maxmind/GeoIPCountry.dat (No such file or directory)
방법은 상대/절대 경로
.dat
파일을 IP 조회에 사용하려고합니다. 파일 스칼라 코드에서 Databricks 파일 저장소에 :Databricks FileStore에서 파일을 사용하는 방법
java.io.FileNotFoundException: FileStore/maxmind/GeoIPCountry.dat (No such file or directory)
방법은 상대/절대 경로
사용 완전한 경로와 지역 환경에서 작동 : 나는 예외를 얻고있다
def getCountryCode(ip: String) {
val filePath = "FileStore/maxmind/GeoIPCountry.dat"
val ipLookups = new IpLookups(geoFile = Option(new File(filePath)),
ispFile = None, orgFile = None, domainFile = None, memCache = false, lruCache = 0)
val location = ipLookups.performLookups(ip)._1.head
println(location.countryCode)
}
퓨즈 마운트 파일 시스템의 파일 :
val filePath = "/dbfs/FileStore/maxmind/GeoIPCountry.dat"
참조 번호 : Using Local File I/O APIs.