Blog– category –
-
Java
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) {... -
Java
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
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. -
Java
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. -
Web Conferencing Video Calling
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... -
Java
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...