在Android上使用JLAN的SMB服务器:无法从PC或MAC查看共享文件夹

时间:2015-07-20 10:03:13

标签: android server smb android-sharing

我尝试使用JLAN库在Android设备上运行服务器。 经过一些工作,它似乎在运行,停止。 在其他Android设备上,我可以通过手动添加smb://192.168.0.10:1445的服务器来连接并查看我的共享文件夹。

这是我的问题:

1)我根植了Android设备,但我无法使用1024以上的端口。(所以我使用的是1445而不是445)

2)从任何其他设备,我都看不到我的服务器自动。 看来我的netbios或我的广播配置不正确。

3)我尝试将其连接到MAC,例如" anonym"与smb://192.168.0.10:1445。 验证窗口出现,但是当我确认MAC表示我没有权利或没有任何共享文件夹时。

我的档案代码:

我的Xml配置文件:

<?xml version="1.0" standalone="no"?>
   <jlanserver>
      <servers>
         <SMB/>
         <noFTP/>
         <noNFS/>
      </servers>
      <SMB>
         <host name="serveur" domain="Workgroup">
            <broadcast>255.255.0.0</broadcast>
            <smbdialects>Core,LanMan,NT</smbdialects>

            <netBIOSSMB sessionPort="1139" namePort="1137" datagramPort="1138" platforms="linux,solaris,macosx,windows"/>
            <tcpipSMB platforms = "linux,macosx,windows,solaris" port = "1445"/>

            <comment>SMB Android Server</comment>
         </host>

         <authenticator type="local">
            <class>org.alfresco.jlan.server.auth.LocalAuthenticator</class>
            <mode>USER</mode>
            <Debug/>
            <allowGuest/>
         </authenticator>

         <!-- Debug -->
            <sessionDebug flags="Netbios,State,Negotiate,Tree,Transact,Echo"/>
            <netbiosDebug/>
            <announceDebug/>
      </SMB>

      <shares>
         <diskshare name="ESPACE" comment="Dossier de Partage">
            <driver>
              <class>org.alfresco.jlan.smb.server.disk.JavaFileDiskDriver</class>
              <LocalPath>/tmp</LocalPath>
            </driver>

            <size totalSize="2T" freeSize="100G"/>-->
            <accessControl default="Write"/>
         </diskshare>
      </shares>

      <security>
         <authenticator type="local">
            <class>org.alfresco.jlan.server.auth.LocalAuthenticator</class>
            <mode>USER</mode>
            <Debug/>
            <allowGuest/>
         </authenticator>
      </security>

      <shareMapper>
         <class>org.alfresco.jlan.smb.server.DefaultShareMapper</class>
         <debug/>
      </shareMapper>

我的主要课程: (Launchserver和StopServer在我的活动中称为单击按钮)

package archisoft.com.smbserverandroid;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;

import org.alfresco.jlan.app.XMLServerConfiguration;
import org.alfresco.jlan.smb.server.CIFSConfigSection;
import org.alfresco.jlan.smb.server.SMBServer;

import java.io.InputStream;
import java.io.InputStreamReader;


public class Configuration extends ActionBarActivity {

    public static final String TAG = "ServiceServerSMB";
    private Button stopButton = null;
    private Button startButton = null;
    private XMLServerConfiguration srvConfig;

    SMBServer MonServer;

    // A la création
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        Log.d(TAG, "####### onCreate");
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_configuration);
    }

    // Au redémarrage
    @Override
    public void onStart()
    {
        Log.d(TAG, "####### onStart");
        super.onStart();
        // On bind les boutons
        startButton = (Button) findViewById(R.id.buttonStart);
        stopButton = (Button) findViewById(R.id.buttonStop);
    }

    // Au retour sur l'activité
    @Override
    public void onResume()
    {
        Log.d(TAG, "####### onResume");
        super.onResume();
    }

    // A l'arrêt
    @Override
    public void onStop()
    {
        Log.d(TAG, "####### onStop");
        super.onStop();
    }

    @Override
    public void onPause()
    {
        Log.d(TAG, "####### onPause");
        super.onPause();
    }

    // Destruction
    @Override
    public void onDestroy() {
        Log.d(TAG, "####### Destruction");
        super.onDestroy();

    }

    // Appelé lorsque l'on clique sur "Start Server"
    public void LaunchServer(View view)
    {
        Log.d(TAG, "####### Launch server");

                try {
                    InputStream stream = getResources().openRawResource(R.raw.jlanconfiguration);
                    srvConfig = new XMLServerConfiguration();
                    srvConfig.loadConfiguration(new InputStreamReader(stream));

                    ((CIFSConfigSection) srvConfig.getConfigSection(CIFSConfigSection.SectionName)).setDatagramPort(1138);
                    ((CIFSConfigSection) srvConfig.getConfigSection(CIFSConfigSection.SectionName)).setNameServerPort(1137);
                    ((CIFSConfigSection) srvConfig.getConfigSection(CIFSConfigSection.SectionName)).setSessionPort(1139);

                    CIFSConfigSection cifsConfig = (CIFSConfigSection) srvConfig.getConfigSection(CIFSConfigSection.SectionName);

                    MonServer = new SMBServer(srvConfig);
                    MonServer.startServer();

                    Log.d(TAG, "Lancement serveur");
                } catch (Exception e) {
                    Log.e(TAG, "Erreur lancement serveur", e);
                }
    }

    public void StopServer(View view)
    {
        Log.d(TAG, "####### StopServer");

        MonServer.shutdownServer(true);
    }
}

感谢所有愿意帮助我的人。 欢迎任何建议。

如果您有任何疑问,请随时提出。

祝你好运!

安东尼

1 个答案:

答案 0 :(得分:0)

你可以通过使用jcifs在Android手机上看到PC中的共享文件夹,这很酷,请尝试这个link传递你的用户名和密码,你只需一步就可以获得所有共享文件夹smbFile.listfiles() 。试试它对我有用。