116

我需要生成固定长度的字符串来生成基于字符位置的文件。缺少的字符必须用空格字符填充。

例如,字段 CITY 具有 15 个字符的固定长度。对于输入“芝加哥”和“里约热内卢”,输出是

“ 芝加哥”
“ 里约热内卢”
.

4

15 回答 15

143

从 Java 1.5 开始,我们可以使用方法java.lang.String.format(String, Object...)并使用类似 printf 的格式。

格式字符串"%1$15s"完成这项工作。where1$表示参数索引,s表示参数是String,15表示String的最小宽度。把它们放在一起:"%1$15s"

对于一般方法,我们有:

public static String fixedLengthString(String string, int length) {
    return String.format("%1$"+length+ "s", string);
}

也许有人可以建议另一种格式字符串来用特定字符填充空格?

于 2012-11-20T14:32:02.913 回答
63

使用String.format's padding 和空格并将它们替换为所需的字符。

String toPad = "Apple";
String padded = String.format("%8s", toPad).replace(' ', '0');
System.out.println(padded);

打印000Apple


更新更高性能的版本(因为它不依赖String.format),空格没有问题(感谢 Rafael Borja 的提示)。

int width = 10;
char fill = '0';

String toPad = "New York";
String padded = new String(new char[width - toPad.length()]).replace('\0', fill) + toPad;
System.out.println(padded);

打印00New York

但是需要添加检查以防止尝试创建负长度的 char 数组。

于 2014-11-07T00:18:46.727 回答
34

该代码将具有给定数量的字符;填充空格或在右侧截断:

private String leftpad(String text, int length) {
    return String.format("%" + length + "." + length + "s", text);
}

private String rightpad(String text, int length) {
    return String.format("%-" + length + "." + length + "s", text);
}
于 2016-06-29T21:21:22.917 回答
17

对于正确的垫,你需要String.format("%0$-15s", str)

-标志将“右”垫,没有-标志将“左”垫

看我的例子:

import java.util.Scanner;
 
public class Solution {
 
    public static void main(String[] args) {
            Scanner sc=new Scanner(System.in);
            System.out.println("================================");
            for(int i=0;i<3;i++)
            {
                String s1=sc.nextLine();
                
                
                Scanner line = new Scanner( s1);
                line=line.useDelimiter(" ");
               
                String language = line.next();
                int mark = line.nextInt();;
                
                System.out.printf("%s%03d\n",String.format("%0$-15s", language),mark);
                
            }
            System.out.println("================================");
 
    }
}

输入必须是字符串和数字

示例输入:谷歌 1

于 2015-08-17T07:42:18.133 回答
14
String.format("%15s",s) // pads left
String.format("%-15s",s) // pads right

很棒的总结在这里

于 2020-01-01T12:09:42.823 回答
13
import org.apache.commons.lang3.StringUtils;

String stringToPad = "10";
int maxPadLength = 10;
String paddingCharacter = " ";

StringUtils.leftPad(stringToPad, maxPadLength, paddingCharacter)

比番石榴好得多。从未见过使用 Guava 的单个企业 Java 项目,但 Apache String Utils 非常普遍。

于 2015-01-23T20:09:04.007 回答
12

您还可以编写一个简单的方法,如下所示

public static String padString(String str, int leng) {
        for (int i = str.length(); i <= leng; i++)
            str += " ";
        return str;
    }
于 2013-03-21T18:09:41.360 回答
11

Guava 库有Strings.padStart可以完全满足您的需求,以及许多其他有用的实用程序。

于 2012-11-20T17:16:37.170 回答
7

这是一个巧妙的技巧:

// E.g pad("sss","00000000"); should deliver "00000sss".
public static String pad(String string, String pad) {
  /*
   * Add the pad to the left of string then take as many characters from the right 
   * that is the same length as the pad.
   * This would normally mean starting my substring at 
   * pad.length() + string.length() - pad.length() but obviously the pad.length()'s 
   * cancel.
   *
   * 00000000sss
   *    ^ ----- Cut before this character - pos = 8 + 3 - 8 = 3
   */
  return (pad + string).substring(string.length());
}

public static void main(String[] args) throws InterruptedException {
  try {
    System.out.println("Pad 'Hello' with '          ' produces: '"+pad("Hello","          ")+"'");
    // Prints: Pad 'Hello' with '          ' produces: '     Hello'
  } catch (Exception e) {
    e.printStackTrace();
  }
}
于 2012-11-20T16:41:08.220 回答
4

这是带有测试用例的代码;):

@Test
public void testNullStringShouldReturnStringWithSpaces() throws Exception {
    String fixedString = writeAtFixedLength(null, 5);
    assertEquals(fixedString, "     ");
}

@Test
public void testEmptyStringReturnStringWithSpaces() throws Exception {
    String fixedString = writeAtFixedLength("", 5);
    assertEquals(fixedString, "     ");
}

@Test
public void testShortString_ReturnSameStringPlusSpaces() throws Exception {
    String fixedString = writeAtFixedLength("aa", 5);
    assertEquals(fixedString, "aa   ");
}

@Test
public void testLongStringShouldBeCut() throws Exception {
    String fixedString = writeAtFixedLength("aaaaaaaaaa", 5);
    assertEquals(fixedString, "aaaaa");
}


private String writeAtFixedLength(String pString, int lenght) {
    if (pString != null && !pString.isEmpty()){
        return getStringAtFixedLength(pString, lenght);
    }else{
        return completeWithWhiteSpaces("", lenght);
    }
}

private String getStringAtFixedLength(String pString, int lenght) {
    if(lenght < pString.length()){
        return pString.substring(0, lenght);
    }else{
        return completeWithWhiteSpaces(pString, lenght - pString.length());
    }
}

private String completeWithWhiteSpaces(String pString, int lenght) {
    for (int i=0; i<lenght; i++)
        pString += " ";
    return pString;
}

我喜欢 TDD ;)

于 2014-03-05T12:52:41.233 回答
2

存在 Apache common lang3 依赖的 StringUtils 来解决 Left/Right Padding

Apache.common.lang3提供了一个StringUtils类,您可以在其中使用以下方法使用您的首选字符左填充。

StringUtils.leftPad(final String str, final int size, final char padChar);

这里,这是一个静态方法和参数

  1. str - 字符串需要填充(可以为空)
  2. size - 要填充的大小
  3. padChar 要填充的字符

我们在该 StringUtils 类中还有其他方法。

  1. 右垫
  2. 重复
  3. 不同的连接方法

我只是在此处添加 Gradle 依赖项供您参考。

    implementation 'org.apache.commons:commons-lang3:3.12.0'

https://mvnrepository.com/artifact/org.apache.commons/commons-lang3/3.12.0

请查看此类的所有 utils 方法。

https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html

GUAVA 库依赖

这是来自 jricher 的答案。Guava 库有 Strings.padStart 可以完全满足您的需求,以及许多其他有用的实用程序。

于 2021-09-24T04:27:59.900 回答
1

这段代码很好用。预期产出

  String ItemNameSpacing = new String(new char[10 - masterPojos.get(i).getName().length()]).replace('\0', ' ');
  printData +=  masterPojos.get(i).getName()+ "" + ItemNameSpacing + ":   " + masterPojos.get(i).getItemQty() +" "+ masterPojos.get(i).getItemMeasure() + "\n";

编码快乐!!

于 2017-10-09T07:46:25.470 回答
0
public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        for (int i = 0; i < 3; i++) {
            int s;
            String s1 = sc.next();
            int x = sc.nextInt();
            System.out.printf("%-15s%03d\n", s1, x);
            // %-15s -->pads right,%15s-->pads left
        }
    }
}

用于printf()在不使用任何库的情况下简单地格式化输出。

于 2021-03-14T11:03:17.763 回答
0
public static String padString(String word, int length) {
    String newWord = word;
    for(int count = word.length(); count < length; count++) {
        newWord = " " + newWord;
    }
    return newWord;
}
于 2016-12-15T23:09:02.470 回答
0

这个简单的功能对我有用:

public static String leftPad(String string, int length, String pad) {
      return pad.repeat(length - string.length()) + string;
    }

调用:

String s = leftPad(myString, 10, "0");
于 2020-01-25T13:50:12.167 回答