공백으로 채워진 고정 길이 문자열 생성
문자 위치 기반 파일을 생성하려면 고정 길이 문자열을 생성해야합니다. 누락 된 문자는 공백 문자로 채워야합니다.
예를 들어, CITY 필드에는 15 자의 고정 길이가 있습니다. 입력 "Chicago"및 "Rio de Janeiro"의 경우 출력은 다음과 같습니다.
"시카고" " 리오 데 자네이로".
Java 1.5부터 java.lang.String.format (String, Object ...) 메소드 를 사용할 수 있으며 format과 같은 printf를 사용할 수 있습니다.
형식 문자열 "%1$15s"
이 작업을 수행합니다. 여기서는 1$
인수 인덱스를 s
나타내며, 인수가 문자열이며 문자열 15
의 최소 너비를 나타냅니다. 종합 : "%1$15s"
.
일반적인 방법의 경우 다음이 있습니다.
public static String fixedLengthString(String string, int length) {
return String.format("%1$"+length+ "s", string);
}
누군가가 다른 형식 문자열을 제안하여 빈 공간을 특정 문자로 채울 수 있습니까?
String.format
의 패딩을 공백으로 활용 하고 원하는 문자로 바꿉니다.
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
합니다.
그러나 음수 길이의 문자 배열을 만들지 못하도록 검사를 추가해야합니다.
이 코드는 정확히 주어진 문자 수를 갖습니다. 공백으로 채워지거나 오른쪽이 잘립니다.
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);
}
아래와 같은 간단한 방법을 작성할 수도 있습니다.
public static String padString(String str, int leng) {
for (int i = str.length(); i <= leng; i++)
str += " ";
return str;
}
import org.apache.commons.lang3.StringUtils;
String stringToPad = "10";
int maxPadLength = 10;
String paddingCharacter = " ";
StringUtils.leftPad(stringToPad, maxPadLength, paddingCharacter)
Guava imo보다 훨씬 낫습니다. Guava를 사용하는 단일 엔터프라이즈 Java 프로젝트는 본 적이 없지만 Apache String Utils는 매우 일반적입니다.
올바른 패드를 위해서는 String.format("%0$-15s", str)
i.e. -
sign will "right" pad and no -
sign will "left" pad
see my example here
input must be a string and a number
example input : Google 1
The Guava Library has Strings.padStart that does exactly what you want, along with many other useful utilities.
Here's a neat trick:
// 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();
}
}
Here is the code with tests cases ;) :
@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;
}
I like TDD ;)
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";
Happy Coding!!
public static String padString(String word, int length) {
String newWord = word;
for(int count = word.length(); count < length; count++) {
newWord = " " + newWord;
}
return newWord;
}
참고URL : https://stackoverflow.com/questions/13475388/generate-fixed-length-strings-filled-with-whitespaces
'programing' 카테고리의 다른 글
gem capybara-webkit 설치 오류 (0) | 2020.09.20 |
---|---|
보호 된 스위치의 케이스 (0) | 2020.09.20 |
원인 : java.lang.UnsupportedOperationException : 차원으로 변환 할 수 없음 : 유형 = 0x1 (0) | 2020.09.20 |
동일한 크기의 두 배열에서 Ruby 해시를 만드는 방법은 무엇입니까? (0) | 2020.09.20 |
linq to SQL을 사용하여 한 번에 여러 행을 업데이트하는 방법은 무엇입니까? (0) | 2020.09.20 |