小编vik*_*iii的帖子

HTTP 状态 500 - 无法在 struts 中创建路径 /adduser 的操作实例

我有一个 JSP 页面,其中有一个用于添加用户的超链接。

<html:link action="openadduser.do"> Add New User < /html:link>
Run Code Online (Sandbox Code Playgroud)

我的 struts-config 文件包含

<action-mappings>
        <action path="/login" name="LoginForm" validate="true" input="/index.jsp"
            type="useraction.LoginAction">
            <forward name="successadmin" path="/home.jsp" />
            <forward name="failure" path="/index.jsp" />
            <forward name="successuser" path="/welcome.jsp" />
        </action>

    <action path="/adduser" name="AdduserForm" validate="true" input="/adduser.jsp"
            type="useraction.AdduserActions">
            <forward name="success" path="/userconfirm.jsp" />
        </action>

       <action path="/openadduser" name="AdduserForm" validate="true" type="useraction.AdduserAction"
            input="/adduser.jsp">
            <forward name="success" path="/userconfirm.jsp" />
        </action>
</action-mappings>
Run Code Online (Sandbox Code Playgroud)

我的adduser.jsp包含代码

<html:form action="/adduser">
     < h1 align="center">  ADD NEW USER < /h1>
     < bean:message key="label.fname"/> <br/>
     <html:text property="fname"></html:text><br/>
     <html:errors property="fname" /><br/>
     </html:select>
    <html:submit/> …
Run Code Online (Sandbox Code Playgroud)

java struts

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

我如何获得最高版本?

如何对以下数组进行排序String

String[] s = {"0.1", "0.3", "0.6", "0.4", "0.5", "0.2", "0.7", "0.8", "0.9", "0.10"};
Run Code Online (Sandbox Code Playgroud)

通过排序我不是指在这里将其转换为整数并得到结果0.9.

在这里,我希望得到的价值为0.10.

在这种情况下,如果字符串数组包含1.1那么最大值将是1.1.

如果数组是这样的话我可以获得最大值,即

String[] s = {"0.1", "0.4", "0.3", "0.4", "0.5", "0.2", "0.7", "1.8", "2.9", "3.1"};
Run Code Online (Sandbox Code Playgroud)

我的代码将适用于此字符串数组,但假设是

String[] s = {"0.1", "1.4", "1.3", "0.4", "0.5", "0.2", "2.7", "1.8", "2.9", "0.1"};
Run Code Online (Sandbox Code Playgroud)

我的代码.

public String createNewVersion(
            String[] entityVersionHistory) {

Map<Integer, List<Integer>> m_Map1 = new HashMap<Integer, List<Integer>>();

String prevKey = "0";
String currentKey = null;

List<Integer> list = …
Run Code Online (Sandbox Code Playgroud)

java

4
推荐指数
2
解决办法
135
查看次数

我如何创建一个有两个长列的表?

我使用的是Oracle 10 g.

我有一个表需要两个Long类型的列:

CREATE TABLE emp
 (
    id1 LONG NULL,
    id2 LONG NULL,
    //
    // Other columns.
);
Run Code Online (Sandbox Code Playgroud)

当我执行此查询时,它给了我这个错误:

Error report:
SQL Error: ORA-01754: a table may contain only one column of type LONG
01754. 00000 -  "a table may contain only one column of type LONG"
*Cause:    An attempt was made to add a LONG column to a table which already
           had a LONG column. Note that even if the LONG column currently
           in the table …
Run Code Online (Sandbox Code Playgroud)

sql oracle sqldatatypes

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

日食中的SWTBot-如何查找项目的弹出菜单(右键菜单)

在我的SWTBot测试中,我试图打开(并单击)右键单击项目浏览器中的打开项目时出现的菜单(包含New,Refactor,Import等的菜单)

我试着用

`treeItem.contextMenu("Refactor").menu("Rename...").click(); 
Run Code Online (Sandbox Code Playgroud)

并得到了WidgetNotFoundException.

请帮忙.

java swtbot

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

使用Twitter4j API获取朋友的时间表

我已经开始学习Twitter4j API并从Twitter获得所有凭据和令牌以使用它.现在我正在尝试使用一个简单的java程序获取我朋友的时间表并将其打印在控制台上.

       ConfigurationBuilder cb = new ConfigurationBuilder();
       cb.setDebugEnabled(true)
           .setOAuthConsumerKey(consumerKey)
           .setOAuthConsumerSecret(consumerSecret)
           .setOAuthAccessToken(accessToken)
           .setOAuthAccessTokenSecret(accessSecret);
     try 
     {
          TwitterFactory factory = new TwitterFactory(cb.build());
          Twitter twitter = factory.getInstance();
          String[] srch = new String[] {"usernameoffriend"};
          ResponseList<User> users = twitter.lookupUsers(srch);
          for (User user : users) {
            System.out.println("Friend's Name " + user.getName()); // this print my friends name
                if (user.getStatus() != null) 
                {
                System.out.println("Friend timeline");
                List<Status> statusess = twitter.getFriendsTimeline();
                for (Status status3 : statusess) 
                 {
                        System.out.println(status3.getText());
                 }
    }
}
Run Code Online (Sandbox Code Playgroud)

代码没有给出错误.但不是打印我朋友的时间线,而是打印自己的时间轴.我正在使用getFriendsTimeline().那么为什么它不打印我的朋友的时间轴.

先感谢您.

java twitter twitter4j

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

如何用grails发送电子邮件

我的应用想要使用自定义邮件发送电子邮件.我浏览了http://grails.org/Mail+from+Grails的文档,我觉得这些文章非常不完整.我按照替代邮件程序中提到的步骤,但我得到一个例外

处理请求时发生NullPointerException:[GET] url/sendEmail无法在null对象上调用方法sendNewEmail().

我的控制器看起来像这样

XXXMailer paMailer paMailer.sendNewEmail()

grails groovy grails-2.0

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

当两个名为"out"的对象时,为什么我没有收到错误?

我写了一小段代码:

 System out = null;
 out.out.println("Hello");
Run Code Online (Sandbox Code Playgroud)

这工作正常,并在控制台上打印"Hello".

现在在我的程序或我的范围中,有两个具有名称的对象out.一个是对象,System另一个是对象PrintStream.

为什么我没有收到编译器错误/运行时错误Duplicate local variable out.

我在这里错过了什么?

java

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

编写一个java程序来删除同一个java程序中的注释?

我正在编写一个java程序来删除相同java程序中的注释.我在考虑使用文件阅读器.但我不确定它是否会奏效.

因为两个进程将使用相同的文件.但我认为在执行代码之前,java文件会生成一个.class文件.所以,如果我用a filereader来编辑java文件.它不应该给我错误,另一个进程已经在使用此文件.

我认为对吗?

提前致谢.

java process

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

long变量不接受值

我试图为长变量赋值,但eclipse显示编译错误.任何人都可以解决这个问题吗?我已检查并确信该值在很长的范围内.

public static void main(String[] args) {
        **long num = 600851475143;**

        for(long i = num/2; i<1; i--) {
            if(num%i == 0 && isPrime(i) == true) {
                System.out.println(i);
                break;
            }
        }

    }
Run Code Online (Sandbox Code Playgroud)

java

0
推荐指数
1
解决办法
569
查看次数

wget使用环境变量

我需要做一个wget的文件URL与一个称为Initial的变量串联在一起

但是如果我这样做,

Initial="something"

wget www.google.ca/${Initial}
Run Code Online (Sandbox Code Playgroud)

输出:

www.google.ca/$%7BInitial%7D
Run Code Online (Sandbox Code Playgroud)

我想获得所需的输出:

www.google.ca/something
Run Code Online (Sandbox Code Playgroud)

谢谢!

linux bash wget

0
推荐指数
1
解决办法
4709
查看次数

标签 统计

java ×7

bash ×1

grails ×1

grails-2.0 ×1

groovy ×1

linux ×1

oracle ×1

process ×1

sql ×1

sqldatatypes ×1

struts ×1

swtbot ×1

twitter ×1

twitter4j ×1

wget ×1