public UploadAdaptor(String path, int buffer, String charset) { this(path); context.setBufferSize(buffer); context.setCharset(charset); }
public UploadAdaptor(String path, int buffer, String charset, int poolSize, int maxFileSize) { context = new UploadingContext(new NutFilePool(path, poolSize)); context.setBufferSize(buffer); context.setCharset(charset); context.setMaxFileSize(maxFileSize); }
public UploadAdaptor(String path, int buffer) { this(path); context.setBufferSize(buffer); }