回答編集履歴
1
改修点の補足
test
CHANGED
@@ -7,3 +7,247 @@
|
|
7
7
|
|
8
8
|
|
9
9
|
次からはもう少し質問方法を勉強してから質問するようにいたします。
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
間違っていたところはisEmptyメソッドのif文returnがtrue、false逆になっていたためでした。
|
16
|
+
|
17
|
+
そのためすべて値がisPaddableの入力チェックでreturn targetとなってしまい処理をせずに終了していたため変化が何も起こらなかったということでした。
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
説明や質問の仕方が悪くご迷惑おかけして申し訳ありません。
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
'''
|
26
|
+
|
27
|
+
//文字列を指定サイズで中央寄せするメソッドを作成してください。
|
28
|
+
|
29
|
+
//※作成済みのメソッド"leftPad", "rightPad" を参考にしてください。
|
30
|
+
|
31
|
+
public static String toCenter(String target, int byt, String str) {
|
32
|
+
|
33
|
+
String hoge = "";
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
if (target == null) {
|
38
|
+
|
39
|
+
return target = "";
|
40
|
+
|
41
|
+
}
|
42
|
+
|
43
|
+
if (str == null) {
|
44
|
+
|
45
|
+
return target = "";
|
46
|
+
|
47
|
+
}
|
48
|
+
|
49
|
+
int n = getBytesAsShiftJIS(str);
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
//getBYtesASSHIftJIseメソッドは引数のバイト数を返すメソッド
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
hoge = rightPad(target, (byt + n - getBytesAsShiftJIS(target)) / 2 + getBytesAsShiftJIS(target), str);
|
58
|
+
|
59
|
+
hoge = leftPad(hoge, byt + 1, str);
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
return hoge;
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
public static String substringBytes(String target, int beginIndex, int endIndex) {
|
72
|
+
|
73
|
+
StringBuilder result = new StringBuilder();
|
74
|
+
|
75
|
+
int size = 0;
|
76
|
+
|
77
|
+
for (char chr : target.toCharArray()) {
|
78
|
+
|
79
|
+
size += getBytesAsShiftJIS(chr);
|
80
|
+
|
81
|
+
if (size < endIndex) {
|
82
|
+
|
83
|
+
if (beginIndex <= size) {
|
84
|
+
|
85
|
+
result.append(chr);
|
86
|
+
|
87
|
+
}
|
88
|
+
|
89
|
+
} else {
|
90
|
+
|
91
|
+
break;
|
92
|
+
|
93
|
+
}
|
94
|
+
|
95
|
+
}
|
96
|
+
|
97
|
+
return result.toString();
|
98
|
+
|
99
|
+
}
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
// 対象文字列の左側に指定された文字列を詰めて指定サイズに整形する
|
108
|
+
|
109
|
+
public static String leftPad(String target, int size, char padChar) {
|
110
|
+
|
111
|
+
return leftPad(target, size, String.valueOf(padChar));
|
112
|
+
|
113
|
+
}
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
// 対象文字列の左側に指定された文字列を詰めて指定サイズに整形する
|
118
|
+
|
119
|
+
public static String leftPad(String target, int size, String padString) {
|
120
|
+
|
121
|
+
// 入力チェック
|
122
|
+
|
123
|
+
if (!isPaddable(target, size, padString)) {
|
124
|
+
|
125
|
+
return target;
|
126
|
+
|
127
|
+
}
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
int padSize = size - getBytesAsShiftJIS(target);
|
132
|
+
|
133
|
+
return substringBytes(
|
134
|
+
|
135
|
+
padString.repeat((int) Math.ceil((double) padSize / getBytesAsShiftJIS(padString))), 0, padSize)
|
136
|
+
|
137
|
+
+ target;
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
// 対象文字列の右側に指定された文字列を詰めて指定サイズに整形する
|
144
|
+
|
145
|
+
public static String rightPad(String target, int size, char padChar) {
|
146
|
+
|
147
|
+
return rightPad(target, size, String.valueOf(padChar));
|
148
|
+
|
149
|
+
}
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
// 対象文字列の右側に指定された文字列を詰めて指定サイズに整形する
|
154
|
+
|
155
|
+
public static String rightPad(String target, int size, String padString) {
|
156
|
+
|
157
|
+
// // 入力チェック
|
158
|
+
|
159
|
+
if (!isPaddable(target, size, padString)) {
|
160
|
+
|
161
|
+
return target;
|
162
|
+
|
163
|
+
}
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
int padSize = size - getBytesAsShiftJIS(target);
|
168
|
+
|
169
|
+
return target
|
170
|
+
|
171
|
+
+ substringBytes(
|
172
|
+
|
173
|
+
padString.repeat((int) Math.ceil((double) padSize / getBytesAsShiftJIS(padString))), 0,
|
174
|
+
|
175
|
+
padSize);
|
176
|
+
|
177
|
+
}
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
// パディング可否判定
|
182
|
+
|
183
|
+
private static boolean isPaddable(String target, int size, String padString) {
|
184
|
+
|
185
|
+
return !isEmpty(target)
|
186
|
+
|
187
|
+
&& 0 < size
|
188
|
+
|
189
|
+
&& !isEmpty(padString)
|
190
|
+
|
191
|
+
&& 0 < size - target.length();
|
192
|
+
|
193
|
+
//return false;
|
194
|
+
|
195
|
+
}
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
}
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
public static boolean isEmpty(String target) {
|
204
|
+
|
205
|
+
|
206
|
+
|
207
|
+
if (target == null || target.matches("")) {
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
return true;
|
212
|
+
|
213
|
+
}
|
214
|
+
|
215
|
+
return false;
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
}
|
220
|
+
|
221
|
+
'''
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
実行するコード
|
226
|
+
|
227
|
+
'''
|
228
|
+
|
229
|
+
writer.println("Util.toCenter(\"1234\", 20, null) ==> " + Util.toCenter("1234", 20, null));
|
230
|
+
|
231
|
+
writer.println("Util.toCenter(\"1234\", 20, \"\") ==> " + Util.toCenter("1234", 20, ""));
|
232
|
+
|
233
|
+
writer.println("Util.toCenter(null, 20, \"+\") ==> " + Util.toCenter(null, 20, "+"));
|
234
|
+
|
235
|
+
writer.println("Util.toCenter(\"\", 20, \"+\") ==> " + Util.toCenter("", 20, "+"));
|
236
|
+
|
237
|
+
writer.println("Util.toCenter(\"1234\", 20, \"*-\") ==> " + Util.toCenter("1234", 20, "*-"));
|
238
|
+
|
239
|
+
writer.println("Util.toCenter(\"12345\", 20, \"*-\") ==> " + Util.toCenter("12345", 20, "*-"));
|
240
|
+
|
241
|
+
writer.println("Util.toCenter(\"1234\", 20, \"??\") ==> " + Util.toCenter("1234", 20, "??"));
|
242
|
+
|
243
|
+
writer.println("Util.toCenter(\"1234\", 20, \"??\") ==> " + Util.toCenter("1234", 20, "??"));
|
244
|
+
|
245
|
+
writer.println("Util.toCenter(\"$$$$\", 20, \"??\") ==> " + Util.toCenter("$$$$", 20, "??"));
|
246
|
+
|
247
|
+
writer.println("Util.toCenter(\"$123\", 20, \"??\") ==> " + Util.toCenter("$123", 20, "??"));
|
248
|
+
|
249
|
+
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
'''
|