Blog– category –
-
Java
Summary of basic array operations in Java
[Initialize the array at the same time as the declaration] By writing the following, you can initialize the array at the same time as the declaration. Sample code static void arraySample() { String[] s = {"Apple", "Orange", "Banana"}; } System.out.println(s[1]); Output result: Orange [] In the array. .. -
Java
Checking Java variable types with instanceof
[Checking the type of a variable] Introducing a sample program to check the type of a variable in Java. Java is a statically typed language that declares types explicitly, so there is no opportunity to check the types that much. However, when using inherited objects, type checking may be necessary... -
Java
Summary of Basic String Manipulation in Java
[] Splits a string at a specific string (delimiter). Sample code public static void splitSample() { String line = "apples, oranges, bananas"; String[] fruits = line.split(","); for (String fruit : fruits) { System.out.println(fruit) ; } } Out... -
Blog
Compare groupware for free schedule and task management
[Groupware that allows you to manage schedules and tasks for free] Groupware that can streamline your work is equipped with a variety of functions. Among them, many have schedule management and task management functions. Also, groupware is a paid product... -
Blog
Market size and future potential of groupware
Groupware has already been introduced by many companies as a work efficiency tool. Even if people understand the appeal of groupware as a tool, few people know about its background or market size. Also, if you are using groupware, how will it develop in the future? -
Blog
Advantages of Using Groupware Task Management
[Advantages of using groupware task management] Task management is included in many groupware. However, not many people know what kind of benefits it has. This can be difficult to understand, especially for companies that have not yet introduced groupware. ... -
Java
Convert Java date string to Date type
[Acquire by type] This is a sample program that converts a date string (format yyyy/MM/dd) to java.util.Date type in Java. [Sample code] /** * Converts the date string "yyyy/MM/dd" to java.util.Date type. * @param str String to be converted * @return Change... -
Blog
What's the Problem with Business Chat? What You Need to Know Before Introducing
Business chat has been increasingly introduced in recent years. Although it is a developing service, the number of companies that understand the benefits of business chat and are trying to utilize it is steadily increasing. However, business chat is not a perfect tool. You may face various problems before and after implementation... -
Blog
How to choose a recommended camera and microphone for web conferencing and video calls
[How to choose recommended cameras and microphones] Cameras and microphones are essential for participating in video conferences, video calls, and web conferences. We will explain the recommended cameras and microphones based on the number of participants and usage type. By choosing the appropriate peripherals, video conferencing and web conferencing can be... -
Blog
What is the difference between in-house SNS and groupware?
[What is the difference between internal SNS and groupware? ] Many companies use tools to improve internal work efficiency and promote communication. In-house SNS and groupware are often chosen in such cases. Although many companies have already introduced it, there are still companies and managers who have not introduced it... -
Blog
File sharing and document management in the cloud for business efficiency
[Improve business efficiency by sharing files and managing documents in the cloud] As tools and services evolve, the methods of document management in business settings are also changing. Recently, by storing documents in the cloud, it has become possible to manage documents more comfortably and efficiently... -
Blog
How will AI (Artificial Intelligence) change business chat?
[How will business chat change with AI (artificial intelligence)? ] Business chat has become an indispensable tool in modern business. It has become popular as a more convenient communication tool than email, and is popular among companies with high IT literacy. That... -
Blog
What is web conference/video call/teleconferencing? A thorough explanation of the differences!
[Introduction] In recent business settings, it is no longer uncommon to see video conferences, web conferences, and video calls. With the advancement of globalization and telework, it is now being used as a convenient tool to communicate regardless of distance. In recent years, companies... -
Blog
Utilize tablets and smartphones for web conferencing and video calls
[Use tablets and smartphones for video conferences and web conferences] In this article, we will introduce the features and usage of tablets and smartphones that you should know if you want to hold video conferences, web conferences, and video calls. Video conferences and web conferences can be held both in Japan and overseas, as well as in Japan and at the head office. -
Blog
Thorough Comparison of Groupware! Which service should you use!
[Thorough comparison of groupware! Which service should I use? ? ] Are you wondering which product to use when introducing groupware? As groupware has become more popular, many products have appeared. The more products we have, the more we are considering introducing... -
Blog
Let's use web conferencing and video calls to change the way we work!
[Use video conferencing, web conferencing, and video calling for work style reform] In this article, we will introduce video conferencing, web conferencing, and video calling, which are the best tools for work style reform. More than two years have passed since the term work style reform appeared in our lives. Japan in recent years... -
Blog
Five points to keep in mind when implementing groupware!
[5 points to keep in mind when introducing groupware! ] Office IT has been progressing rapidly in recent years. The office environment is becoming more important, and IT products are being introduced to make traditionally wasteful tasks more efficient. Group software is attracting attention for improving in-house work efficiency... -
Blog
Business Efficiency with Groupware
[Improving work efficiency with groupware] This article introduces how to improve work efficiency by introducing groupware. In recent years, many companies have introduced groupware. Why do companies introduce groupware? It's groupware... -
Java
Convert any Java date/time string to Date or Calendar type
[] This is a sample program that converts any date or time string in Java to java.util.Calendar or java.util.Date type if possible. To convert, first format it to the default date/time string, and then convert it to the java.util.Calendar type. Conversion... -
Java
Java Tasktray Icons Displayed and Blinking
[] Introducing a utility class that displays and blinks the task tray (system tray) icon in Java. The utility class uses the java.awt.SystemTray and java.awt.TrayIcon classes, which are new features added in Java SE 6 Mustang. use...