0

我只是需要一些帮助来将输出格式化为特定的方式。我满足了作业的所有要求,除了输出。

对于这篇文章的错误格式,我深表歉意,非常感谢任何建议和帮助。

我需要输出看起来像:

随机先生 - 500 美元
BobRandom 先生 - 250 美元
等 - 8 次以上
(所有美元的总和)

这是我的代码:

import javax.swing.JOptionPane;
import java.util.Arrays;

public class PeerTutors {
    public static void main(String[] args) {
        String[] myNameArray = new String[2];
        String[] myGradeArray = new String[2];
        double[] myStudentArray = new double[2];
        double[] stipend = new double[2];
        int sum = 0;

        for (int i = 0; i < 2; i++) {
            myNameArray[i] = (JOptionPane
                    .showInputDialog(null,
                            "Enter the Peer Tutor name, last name then followed by the first name."));

        }
        Arrays.sort(myNameArray, String.CASE_INSENSITIVE_ORDER);
        JOptionPane.showMessageDialog(null, "The Peer Tutors Names are :"
                + Arrays.toString(myNameArray));

        for (int a = 0; a < 2; a++) {
            myGradeArray[a] = JOptionPane.showInputDialog(null,
                    "Please enter the highest degree earned for: "
                            + myNameArray[a]);
        }
        JOptionPane.showMessageDialog(null, "The Peer Tutors Names are :"
                + Arrays.toString(myNameArray) + Arrays.toString(myGradeArray));

        for (int b = 0; b < 2; b++) {
            myStudentArray[b] = Double.parseDouble(JOptionPane.showInputDialog(
                    null, "Please enter the number of students"
                            + myNameArray[b] + " has assisted"));
        }
        JOptionPane.showMessageDialog(null,
                "The Peer Tutors Report: " + Arrays.toString(myNameArray)
                        + "with" + Arrays.toString(myStudentArray)
                        + " of children tutoring");

        for (int c = 0; c < 2; c++) {
            if (myGradeArray[c].equals("BS")) {
                stipend[c] = 9.5 * myStudentArray[c];

            } else if (myGradeArray[c].equals("MS")) {
                stipend[c] = 15 * myStudentArray[c];

            } else {
                stipend[c] = 20 * myStudentArray[c];
            }
        }
        for (double d : stipend) {
            sum += d;
        }

        for (int d = 0; d < 2; d++) {
            JOptionPane.showMessageDialog(null, myNameArray[d] + "-"
                    + stipend[d] + "\n");

        }
    }
}
4

3 回答 3

1

基本上,对于每一列,您都需要某种列表(数组或最好是List)。您还需要维护每列 max-width 的信息(我通常将其放在另一个中List)。

您需要循环每一行,分解为它的列元素并将每个元素放在相应的列List中。您还应该随时计算每列的宽度要求。

一旦你把这一切都安排好了,你需要重建输出,使用类似 a 的东西StringBuilder来重建输出的每一行,但这样每一列都有所需的额外间距以允许列流动。

更新了示例

现在,通常情况下,我会将每一行存储为一个单独的对象,因为这样可以更轻松地保持对总行数的一致想法,但是,使用您的代码作为起点......

import java.text.NumberFormat;

public class TestTextColumnFormatting {

    public static void main(String[] args) {
        String[] myNameArray = new String[]{
            "Mr. Samete",
            "Ms. Torbura",
            "Mr. Perem",
            "Mr. Rothaw",
            "Miss. Endemos",
            "Mr. Chomoshon",
            "Mrs. Aldir",};
        double[] stipends = new double[]{
            500,
            200,
            300,
            1000,
            250,
            125,
            600,
            338
        };
        NumberFormat nf = NumberFormat.getCurrencyInstance();
        double tally = 0;

        int columnWidths[] = new int[2];
        for (int index = 0; index < myNameArray.length; index++) {
            columnWidths[0] = Math.max(columnWidths[0], myNameArray[index].length());
            columnWidths[1] = Math.max(columnWidths[1], nf.format(stipends[index]).length());
            tally += stipends[index];
        }

        columnWidths[1] = Math.max(columnWidths[1], nf.format(tally).length());

        StringBuilder sb = new StringBuilder(128);
        for (int index = 0; index < myNameArray.length; index++) {

            String name = myNameArray[index];
            String stipend = nf.format(stipends[index]);

            sb.append(name).append(fill(name, columnWidths[0], ' ')).append(" ");
            sb.append(fill(stipend, columnWidths[1], ' ')).append(stipend);
            sb.append("\n");

        }


        sb.append(fill("", columnWidths[0], ' ')).append(" ");
        sb.append(fill("", columnWidths[1], '=')).append("\n");
        sb.append(fill("", columnWidths[0], ' ')).append(" ");
        sb.append(fill(nf.format(tally), columnWidths[1], ' ')).append(nf.format(tally));
        sb.append("\n");

        System.out.println(sb.toString());

    }

    public static String fill(String sValue, int iMinLength, char with) {

        StringBuilder filled = new StringBuilder(iMinLength);

        while (filled.length() < iMinLength - sValue.length()) {

            filled.append(with);

        }

        return filled.toString();

    }
}

这将输出类似...

Mr. Samete      $500.00
Ms. Torbura     $200.00
Mr. Perem       $300.00
Mr. Rothaw    $1,000.00
Miss. Endemos   $250.00
Mr. Chomoshon   $125.00
Mrs. Aldir      $600.00
              =========
              $2,975.00

更新

我真是个白痴,我才意识到您正在使用JOptionPane:P

最简单的解决方案是构建一个 HTML 表格并让 Swing 为您呈现它......

在此处输入图像描述

import java.text.NumberFormat;
import javax.swing.JOptionPane;

public class TestTextColumnFormatting {

    public static void main(String[] args) {
        String[] myNameArray = new String[]{
            "Mr. Samete",
            "Ms. Torbura",
            "Mr. Perem",
            "Mr. Rothaw",
            "Miss. Endemos",
            "Mr. Chomoshon",
            "Mrs. Aldir",};
        double[] stipends = new double[]{
            500,
            200,
            300,
            1000,
            250,
            125,
            600,
            338
        };
        NumberFormat nf = NumberFormat.getCurrencyInstance();
        double tally = 0;

        StringBuilder sb = new StringBuilder(128);
        sb.append("<html><table border='0'>");
        for (int index = 0; index < myNameArray.length; index++) {

            String name = myNameArray[index];
            String stipend = nf.format(stipends[index]);

            sb.append("<tr><td align='left'>");
            sb.append(name);
            sb.append("</td><td align='right'>");
            sb.append(stipend);
            sb.append("</td></tr>");

            tally += stipends[index];

        }
        sb.append("<tr><td align='center'>");
        sb.append("</td><td align='right'>");
        sb.append(nf.format(tally));
        sb.append("</td></tr>");

        JOptionPane.showMessageDialog(null, sb.toString());

    }
}
于 2013-04-11T04:09:09.477 回答
0

您可以将给定的输入附加到 a String,然后将其传递给JOptionPaneas 输入。从输入中获取名称后,只需使用 aString并将所有名称附加到它以进行显示。

示例图像

  Arrays.sort(myNameArray);

  String nameString = new String();
  for(int i = 0; i < myNameArray.length; i++) {
      nameString = "\n" + nameString + myNameArray[i] + "\n";
  }

  JOptionPane.showMessageDialog(null,"The Peer Tutors Names are :" + nameString);

同样,您也可以对其他输入执行相同的方法。

于 2013-04-11T04:32:11.373 回答
0

解决方案 1)从每一行构建一个字符串。您可以通过简单地将两个字符串与 连接在一起+,并将它们放在单独的行上,并将它们与中间的 a 连接起来,System.lineSeparator()这是一个特殊的字符串,它将是您系统上的换行符 ASCII。(见http://docs.oracle.com/javase/7/docs/api/java/lang/System.html#lineSeparator%28%29

解决方案 2)将您想要在最终字符串中的所有行添加到一个ArrayList<String>中,然后通过连接您的列表来构造输出字符串System.lineSeparator()。类似的想法,除了行在逻辑上是分开的,直到最后。

如果您需要特定的宽度,我建议您遵循解决方案 2),除了不要将要打印的最终结果制作成 ArrayList,而是制作每列组件的 ArrayList,并注意每列中最大的条目。然后,您可以在所有其他条目中添加空格以使它们同样大(例如,使用字符串格式化程序、%s 标记并在每个条目上动态添加所需的宽度:http: //docs.oracle。 com/javase/6/docs/api/java/util/Formatter.html)。然后,您最终可以将所有内容连接在一起并吐出。

于 2013-04-11T04:00:04.557 回答