【问题标题】:Converting System.out.print to JOption Pane?将 System.out.println 转换为 JOptionPane?
【发布时间】:2013-02-11 04:49:34
【问题描述】:

想要输出这个程序,它告诉两个单词是否是字谜。我想知道如何将所有 System.out.print 命令更改为 JOption 窗格命令!我很想得到任何帮助,因为我是一名一年级程序员并且有这个任务到期。

import java.util.Arrays;

public class NewAnagram
{
public static void main(String[] args)
{
    if (args.length != 2)
    {
        System.out.println("2 words have not been entered!");        
    }
    else
    {
        printPhrases(args[0], args[1]);                              
    }
}

public static boolean anagramSearch(String phrase1, String phrase2) 
{

    String ltrsOnlyOne = lettersOnly(phrase1);
    String ltrsOnlyTwo = lettersOnly(phrase2);      
    char[] first = ltrsOnlyOne.toLowerCase().toCharArray();
    char[] second = ltrsOnlyTwo.toLowerCase().toCharArray();

    Arrays.sort(first);
    Arrays.sort(second);

    if (Arrays.equals(first, second))
    {
        return true;
    }
    else
    {
        return false;
    }   
}

public static String lettersOnly(String word) 
{
    int length = word.length();
    StringBuilder end = new StringBuilder(length);
    char j;

    for (int i = (length - 1); i >= 0; i--) 
    {
        j = word.charAt(i);
        if (Character.isLetter(j)) 
        {
            end.append(j);
        }
    }
    return end.toString();
}

public static void printPhrases(String phrase1, String phrase2)
{
    boolean isFound = anagramSearch(phrase1, phrase2);
    if (isFound == true) 
    {
        System.out.println(phrase1 + " is an anagram of "+ phrase2);
    }

    if (isFound == false) 
    {
        System.out.println(phrase1 + " is not an anagram of "+ phrase2);
    }
}

}

【问题讨论】:

标签: java swing joptionpane anagram


【解决方案1】:

一行

System.out.println(phrase1 + " is not an anagram of "+ phrase2);

在 JOptionPane 版本中是这样的:

JOptionPane.showMessageDialog(null, phrase1 + " is not an anagram of " + phrase2);

第一个参数是对话框的。由于您的应用程序中没有任何其他窗口,因此只需传递null

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2021-06-14
    • 2021-09-13
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-06-22
    相关资源
    最近更新 更多