<< Click to Display Table of Contents >>

Base64encode

오즈 바이너리 객체에 있는 데이터를 Base64로 인코딩한 후 인코딩된 문자열을 가져옵니다.

Prototype

string Base64encode()

Example

var binary = OZCreator.getBuiltInObject("OZBinary");

//var binary = OZCreator.getBuiltInObject(OZBuiltInObject.BINARY);

binary.Base64decode("xde9usau");

var encodetext = binary.Base64encode();