obtain static method

FileMessage obtain(
  1. String localPath
)

localPath 本地路径,Android 必须以 file:// 开头

Implementation

static FileMessage obtain(String localPath) {
  FileMessage msg = new FileMessage();
  msg.localPath = localPath;
  return msg;
}