2017-12-14 14 views

답변

2

사용 완전한 경로와 지역 환경에서 작동 : 나는 예외를 얻고있다

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.