From 8bfa50e64be577a93d0d160b8d710dcc97114627 Mon Sep 17 00:00:00 2001 From: tob Date: Fri, 15 Feb 2002 20:39:42 +0000 Subject: [PATCH] some needed date-converters --- source/mir/misc/StringUtil.java | 85 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 76 insertions(+), 9 deletions(-) diff --git a/source/mir/misc/StringUtil.java b/source/mir/misc/StringUtil.java index a3c70dac..dddaf654 100755 --- a/source/mir/misc/StringUtil.java +++ b/source/mir/misc/StringUtil.java @@ -33,6 +33,22 @@ public final class StringUtil { } /** + * Wandelt Calendar in einen 12-ziffrigen String um (yyyymmddhhmm) + * @param theDate + * @return 12-ziffriger String (yyyymmdd) + */ + + public static final String date2webdbDateTime (GregorianCalendar theDate) { + StringBuffer webdbDate = new StringBuffer(); + webdbDate.append(String.valueOf(theDate.get(Calendar.YEAR))); + webdbDate.append(pad2(theDate.get(Calendar.MONTH) + 1)); + webdbDate.append(pad2(theDate.get(Calendar.DATE))); + webdbDate.append(pad2(theDate.get(Calendar.HOUR))); + webdbDate.append(pad2(theDate.get(Calendar.MINUTE))); + return webdbDate.toString(); + } + + /** * wandelt Calendar in dd.mm.yyyy / hh.mm um * @param theDate * @return String mit (dd.mm.yyyy / hh.mm um) @@ -99,6 +115,57 @@ public final class StringUtil { return returnDate.toString(); } + /** + * converts string from format: yyyy-mm-dd__hh:mm:ss.d + * to yyyy + */ + public static String dateToYear (String date) { + StringBuffer returnDate = new StringBuffer(); + if (date!=null) { + + returnDate.append(date.substring(0,4)); + } + return returnDate.toString(); + } + + /** + * converts string from format: yyyy-mm-dd__hh:mm:ss.d + * to [m]m + */ + public static String dateToMonth (String date) { + StringBuffer returnDate = new StringBuffer(); + if (date!=null) { + if (!date.substring(5,6).equalsIgnoreCase("0")) returnDate.append(date.substring(5,7)); + else returnDate.append(date.substring(6,7)); + } + return returnDate.toString(); + } + + /** + * converts string from format: yyyy-mm-dd__hh:mm:ss.d + * to [d]d + */ + public static String dateToDayOfMonth (String date) { + StringBuffer returnDate = new StringBuffer(); + if (date!=null) { + if (!date.substring(8,9).equalsIgnoreCase("0")) returnDate.append(date.substring(8,10)); + else returnDate.append(date.substring(9,10)); + } + return returnDate.toString(); + } + + /** + * converts string from format: yyyy-mm-dd__hh:mm:ss.d + * to hh:mm + */ + public static String dateToTime (String date) { + StringBuffer returnDate = new StringBuffer(); + if (date!=null) { + returnDate.append(date.substring(11,16)); + } + return returnDate.toString(); + } + /** * schließt einen String in Anführungsszeichen ein, falls er Leerzeichen o.ä. enthält @@ -241,7 +308,7 @@ public final class StringUtil { } } - + /** @@ -896,7 +963,7 @@ public final class StringUtil { } else { title = removeHTMLTags(title); return regex.substituteAll(haystack," "+title+""); - } + } } catch(REException ex){ return null; } @@ -933,7 +1000,7 @@ public final class StringUtil { return regex.substituteAll(haystack,"\""+title+"\"/ 
"+title+""); } else { return regex.substituteAll(haystack,"\"\"/ "); - } + } } catch(REException ex){ return null; } @@ -958,7 +1025,7 @@ public final class StringUtil { return null; } } - + /** * this method deletes all html tags * @@ -988,24 +1055,24 @@ try { String approvedTags="a|img|h1|h2|h3|h4|h5|h6|br|b|i|strong|p"; String badAttributes="onAbort|onBlur|onChange|onClick|onDblClick|onDragDrop|onError|onFocus|onKeyDown|onKeyPress|onKeyUp|onLoad|onMouseDown|onMouseMove|onMouseOut|onMouseOver|onMouseUp|onMove|onReset|onResize|onSelect|onSubmit|onUnload"; String approvedProtocols="rtsp|http|ftp|https|freenet|mailto"; - + // kill all the bad tags that have attributes String s = "<\\s*/?\\s*(?!(("+approvedTags+")\\s))\\w+\\s[^>]*>"; RE regex = new RE(s,RE.REG_ICASE); haystack = regex.substituteAll(haystack,""); - + // kill all the bad tags that are attributeless regex = new RE("<\\s*/?\\s*(?!(("+approvedTags+")\\s*>))\\w+\\s*>",RE.REG_ICASE); haystack = regex.substituteAll(haystack,""); - + // kill all the tags which have a javascript attribute like onLoad regex = new RE("<[^>]*("+badAttributes+")[^>]*>",RE.REG_ICASE); haystack = regex.substituteAll(haystack,""); - + // kill all the tags which include a url to an unacceptable protocol regex = new RE("<\\s*a\\s+[^>]*href=(?!(\'|\")?("+approvedProtocols+"))[^>]*>",RE.REG_ICASE); haystack = regex.substituteAll(haystack,""); - + return haystack; } catch(REException ex){ ex.printStackTrace(); -- 2.11.0