小编Osk*_*erm的帖子

Ant FTP任务失败:java.net.SocketException

我试图通过FTP将一个zip文件通过FTP上传到Windows Server 2008 R2 FTP服务器(如果重要的话).我有一个类似的任务来创建目录/发布,它工作,但不知何故通过FTP上传给我带来了问题.

    <ftp    action="put"
            userid="${adapter.ftp.username}" 
            password="${adapter.ftp.password}"
            server="${ftp.hostname}"
            retriesAllowed="5"
            verbose="true"
            systemTypeKey="WINDOWS"
            remotedir="/Release" >

        <fileset dir=".">
            <include name="Adapter.zip"/>
        </fileset>
    </ftp>
Run Code Online (Sandbox Code Playgroud)

Ant调试日志:

  [ftp] Opening FTP connection to 192.168.2.120
  [ftp] custom configuration
  [ftp] custom config: system key = WINDOWS
  [ftp] custom config: server language code = 
  [ftp] connected
  [ftp] logging in to FTP server
  [ftp] login succeeded
  [ftp] changing the remote directory to /Release
  [ftp] sending files
  fileset: Setup scanner in dir C:\dir with patternSet{ includes: [adapter.zip] excludes: [] }
  [ftp] …
Run Code Online (Sandbox Code Playgroud)

ant ftp

7
推荐指数
1
解决办法
5016
查看次数

m2e:m2e不支持copy-dependencies

我在我的错误中得到了这个错误,我pom.xml无法理解为了让eclipse运行项目我需要改变什么(运行为 - > maven build)

<build>
    <plugins>
        <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                        <classpathPrefix>lib/</classpathPrefix>
                            <mainClass>com.cc.adapter.mock.InsertAccountStarter</mainClass>
                    </manifest>
                </archive>
            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-dependency-plugin</artifactId>
            <executions>
       <!-- Line below is the error -->
                <execution>
                    <phase>install</phase>
                    <goals>
                        <goal>copy-dependencies</goal>
                    </goals>
                    <configuration>
                        <outputDirectory>${project.build.directory}/lib</outputDirectory>
                    </configuration>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-codegen-plugin</artifactId>
            <version>${cxf.version}</version>
            <dependencies>
                <dependency>
                    <groupId>org.apache.cxf</groupId>
                    <artifactId>cxf-rt-bindings-soap</artifactId>
                    <version>${cxf.version}</version>
                </dependency>
            </dependencies>
            <executions>
                <execution>
                    <id>generate-sources</id>
                    <configuration>
                        <sourceRoot>src/main/generated</sourceRoot>

                        <wsdlOptions>
                            <wsdlOption>
                                <wsdl>src/main/wsdl/CrmService.wsdl</wsdl>
                                <autoNameResolution>true</autoNameResolution>
                                <extendedSoapHeaders>true</extendedSoapHeaders>
                            </wsdlOption>
                        </wsdlOptions>
                    </configuration>
                    <goals>
                        <goal>wsdl2java</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
Run Code Online (Sandbox Code Playgroud)

尝试从eclipse中构建它时的错误是

[ERROR] No goals have been …
Run Code Online (Sandbox Code Playgroud)

eclipse maven m2e

5
推荐指数
3
解决办法
2万
查看次数

Android html5输入类型="密码"和数字键盘

我的任务是为Android和iOS设置网页样式,您应该输入您的信用卡信息.

我无法获得安全代码字段来在Android中打开数字键盘.

这是我最接近的.它适用于iOS,但不适用于Android.

<input type="password" pattern="[0-9]*">
Run Code Online (Sandbox Code Playgroud)

我被允许做的事情非常有限:

  • 没有Javascript,只有HTML和CSS修改.
  • 输入类型必须是密码

是否有可能获得密码输入字段以在Android中打开数字键盘?

css html5 android css3

2
推荐指数
1
解决办法
6148
查看次数

标签 统计

android ×1

ant ×1

css ×1

css3 ×1

eclipse ×1

ftp ×1

html5 ×1

m2e ×1

maven ×1