로그 파일

public class LogFile
extends Object

java.lang.Object의 클래스
   ↳ com.android.tradefed.result.LogFile 클래스의 생성자


저장된 로그 파일의 메타데이터를 저장할 클래스입니다.

요약

공개 생성자

LogFile(String path, String url, LogDataType type)

파일 경로, URL, LogDataType 메타데이터로 LogFile를 구성합니다.

LogFile(String path, String url, boolean isCompressed, LogDataType type, long size)

파일 경로, URL, LogDataType 메타데이터로 LogFile를 구성합니다.

공개 메서드

String getPath()

절대 경로를 가져옵니다.

long getSize()

로깅된 파일의 크기를 가져옵니다.

LogDataType getType()

로깅된 파일의 LogDataType를 가져옵니다.

String getUrl()

저장된 파일에 액세스할 수 있는 URL을 가져옵니다.

boolean isCompressed()

파일이 압축되었는지 확인합니다.

boolean isText()

파일을 텍스트로 표시할 수 있는지 여부를 가져옵니다.

공개 생성자

로그 파일

public LogFile (String path, 
                String url, 
                LogDataType type)

파일 경로, URL, LogDataType 메타데이터로 LogFile를 구성합니다.

매개변수
path String: 저장된 파일의 절대 경로입니다.

url String: 저장된 파일에 액세스할 수 있는 URL입니다.

type LogDataType: 로깅된 파일의 LogDataType입니다.

로그 파일

public LogFile (String path, 
                String url, 
                boolean isCompressed, 
                LogDataType type, 
                long size)

파일 경로, URL, LogDataType 메타데이터로 LogFile를 구성합니다. 변형 압축된 상태를 설정할 수 있는 LogFile#LogFile(String, String, LogDataType)의 값 명시적으로 파일을 압축하지 않은 경우, 일부 경우에는 수동으로 파일을 압축하지만 추적할 수 있습니다.

매개변수
path String: 저장된 파일의 절대 경로입니다.

url String: 저장된 파일에 액세스할 수 있는 URL입니다.

isCompressed boolean: 파일이 압축되었는지 여부입니다.

type LogDataType: 로깅된 파일의 LogDataType입니다.

size long: 로깅된 파일의 크기(바이트)

공개 메서드

getPath

public String getPath ()

절대 경로를 가져옵니다.

반환 값
String

getSize

public long getSize ()

로깅된 파일의 크기를 가져옵니다.

반환 값
long

getType

public LogDataType getType ()

로깅된 파일의 LogDataType를 가져옵니다.

반환 값
LogDataType

getUrl

public String getUrl ()

저장된 파일에 액세스할 수 있는 URL을 가져옵니다.

반환 값
String

압축됨

public boolean isCompressed ()

파일이 압축되었는지 확인합니다.

반환 값
boolean

isText

public boolean isText ()

파일을 텍스트로 표시할 수 있는지 여부를 가져옵니다.

반환 값
boolean