Come NilsH suggerito MessageFormat è veramente bello per questo scopo. Per avere variabili chiamate si può nascondere dietro la MessageFormat classe:
public class FormattedStrSubstitutor {
public static String formatReplace(Object source, Map<String, String> valueMap) {
for (Map.Entry<String, String> entry : valueMap.entrySet()) {
String val = entry.getValue();
if (isPlaceholder(val)) {
val = getPlaceholderValue(val);
String newValue = reformat(val);
entry.setValue(newValue);
}
}
return new StrSubstitutor(valueMap).replace(source);
}
private static boolean isPlaceholder(String isPlaceholder) {
return isPlaceholder.startsWith("${");
}
private static String getPlaceholderValue(String val) {
return val.substring(2, val.length()-1);
}
private static String reformat(String format) {
String result = MessageFormat.format("{0,date," + format + "}", new Date());
return result;
}
}
E modificare il tuo TestCase:
SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd");
String template = ".../uploads/${customer}/${dateTime}/report.pdf";
@Test
public void shouldResolvePlaceholder() {
final Map<String, String> model = new HashMap<String, String>();
model.put("customer", "Mr. Foobar");
model.put("dateTime", "${yyyyMMdd}");
final String filledTemplate = FormattedStrSubstitutor.formatReplace(this.template,
model);
assertEquals(".../uploads/Mr. Foobar/" + this.formatter.format(new Date())
+ "/report.pdf", filledTemplate);
}
Ho rimosso i generici e sostituire quelli con stringa. Anche isPlaceholder
e getPlaceholderValue
sono hardcoded e si aspetta la sintassi $ {value}.
Ma questa è solo l'idea per risolvere il tuo problema. Per fare ciò è possibile utilizzare i metodi da StrSubstitutor
(è sufficiente utilizzare o fare FormattedStrSubstitutor extends StrSubstitutor
).
Inoltre è possibile utilizzare per esempio $ d {valore} per la formattazione di data e $ pippo {valore} per la formattazione foo.
UPDATE
non poteva dormire senza la piena soluzione. È possibile aggiungere questo metodo per FormattedStrSubstitutor
classe:
public static String replace(Object source,
Map<String, String> valueMap) {
String staticResolved = new StrSubstitutor(valueMap).replace(source);
Pattern p = Pattern.compile("(\\$\\{date)(.*?)(\\})");
Matcher m = p.matcher(staticResolved);
String dynamicResolved = staticResolved;
while (m.find()) {
String result = MessageFormat.format("{0,date" + m.group(2) + "}",
new Date());
dynamicResolved = dynamicResolved.replace(m.group(), result);
}
return dynamicResolved;
}
tuo testcase è come la tua domanda (piccoli cambiamenti nel segnaposto):
SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd");
String template = ".../uploads/${customer}/${date,yyyyMMdd}/report.pdf";
@Test
public void shouldResolvePlaceholder() {
final Map<String, String> model = new HashMap<String, String>();
model.put("customer", "Mr. Foobar");
final String filledTemplate = FormattedStrSubstitutor.replace(this.template,
model);
assertEquals(
".../uploads/Mr. Foobar/" + this.formatter.format(new Date())
+ "/report.pdf", filledTemplate);
}
stessa limitazione come prima; no generici e prefisso e suffisso di correzione per segnaposto.
è quella data parte sempre l'ultima cartella nella struttura della directory? –
No, in alcuni altri report è nel mezzo. O nel nome del file. Questo è solo un esempio. – d0x