Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import org.apache.commons.net.ftp.FTPClientConfig;

public class Main {

    private static FTPClientConfig getFTPClientConfig() {
        FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_NT);
        conf.setServerLanguageCode("zh");

        return conf;
    }
}