How to create a JAR file for a Java project
This post explains how to create a JAR (Java ARchive) file for a Java project. Steps to create a JAR file for a Java project The steps to create a JAR file for a Java project are: Ensure your project…
This post explains how to create a JAR (Java ARchive) file for a Java project. Steps to create a JAR file for a Java project The steps to create a JAR file for a Java project are: Ensure your project…
This solution is only available from JDK 9. In other to set the JDK version on NetBeans, right click on Project > “Properties” >> “Sources” > “Source/Binary format”; and “Libraries” > “Java Platform”. package main; import javax.swing.JFrame; import javax.swing.JLabel; import…
This solution works only for .wav files. Source code: public void playSound() { try { AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File(“”).getAbsoluteFile()); Clip clip = AudioSystem.getClip(); clip.open(audioInputStream); clip.start(); } catch(Exception ex) { System.out.println(“Error with playing sound.”); ex.printStackTrace(); } } External References “Playing…
Android Studio is the official Google’s IDE to develop apps for Android, based on IntelliJ. 1. Download file Download latest Android Studio version for Mac (3.2.1 at the time of this article). 2. Install application Double-click on .dmg file…
https://docs.microsoft.com/es-es/windows-hardware/drivers/install/obtaining-a-software-publisher-certificate–spc-
This is a non-exhaustive list of prototyping and mockups apps. Balsamiq Commercial, 30-day trial version Web-based. InVision Marvelapp Freemium. Web-based. Moqups Freemium. Web-based. Pencil Project Open source, free. Desktop-based. There is a discontinued web-based version (Mozilla…
DevOps, from development operations, is a cultural and organizational movement that emphasizes collaboration and integration between software developers (Dev) and IT operations (Ops) teams. DevOps uses a set of practices and tools to integrate the work of dev and ops…
A modeling language allows to make descriptions through diagrams with texts. Examples of general-purpose modeling languages are Unified Modeling Languange (UML) and SysML, A process modeling language allows to describe processes through diagrams with text. Examples of processing modeling languages…