Blog– category –
-
Get extension from Java filename
[] This is a sample source for getting the extension from a file name in Java. [] /** * Returns the extension from the file name. * @param fileName File name * @return File extension */ public static String getSuffix(String fileName) { if (fileName == null) ... -
Convert URLs in Java strings to links
[] This is a sample source that converts a URL in a string into a link (a href=...) using regular expressions in Java. 【】 /** Regular expression pattern for extracting URL */ public static final Pattern convURLLinkPtn = Pattern.compile ("(http://|https://){1}[\\w\\.\. .. -
Remove extensions from Java filenames
[] This is a sample source that returns the file name with the extension removed in Java. [] /** * Returns the file name without the extension. * @param fileName File name * @return File name */ public static String getPreffix(String fileName) {... -
Shaped by Java LPAD and RPAD
[] Introducing sample source that performs processing similar to the SQL functions LPAD and RPAD on strings in Java. These are very useful when dealing with fixed length formats. LPAD...Fills a repeated string to the left of a string and returns it so that the total number of characters is the specified number of digits... -
Java Reflection Made Easy
[Java reflection made easy] Introducing a utility class that allows you to easily use Java's reflection API. [] Reflection API is included in the "java.lang.reflect" package, and is used to obtain information such as fields and methods from Java classes. -
Parsing HTTP with Java Log Filter
[] Introducing a useful Filter class that implements javax.servlet.Filter, analyzes the content of HTTP requests, and outputs logs. This log filter uses "java.util.logging.Logger" for log output, and you can change the information output by changing the log level. -
Seamless calling functionality from the company's Web Phonebook v4.01.31
[Function addition] The calling function can be used seamlessly from the internal web phone book. Please check how to use it by linking with the web phone book. Web phone book linking requires a business premium license or higher. Even deleted chat rooms can be safely used with the same name. Re-creation is now possible (*All users are v4.01.18... -
Extract Java system icons
[] Introducing a sample program that uses Java to extract the icon of a specified file into a png format image file. The specified file can be any executable file with an .exe extension, dll, xls, doc, etc. I searched the internet for similar methods...