Yesterday borrowed a "Web Design Experiment Tutorial (Java language)", and then read the first chapter, a swing example, so for everyone to share!As for the coding and decoding of the data, I think it has been explained very clearly in the example, and two methods have been done.Turn it into a 16-binary.//UTF8 decodingBtnutf8decode =NewJButton ("utf8\u89e3\u7801\
? FalseUsing Shutdownoutput to close the output stream, is the socket closed? FalseClose the output stream using close, does the socket close? TrueCan the output stream be re-opened after using Shutdownoutputstream? ***Is the data in the output buffer discarded or sent? ****---------------------------------Server------------------------------I am the server, I am listening on the 9999 port ....I am the server, I am listening on the 9999 port ....Java.io.EOFExceptionAt Java.io.DataInputStream.rea
Java implementation drag-and-drop example
Swing in the implementation of drag-and-drop function, the code is very simple, have comments, see for yourself, the operation effect of the following figure:
Copy Code code as follows:
Package com;
Import java.awt.*;Import Java.awt.datatransfer.DataFlavor;Import java.awt.dnd.DnDConstants;Import Java.awt.dnd.DropTarget;Import Java.awt.dnd.DropTarge
}*/ protectedOnclicklistener Monclicklistener; /*** Setonclicklistener () parameter is Onclicklistener interface------> Background three * Register a callback to being invoked when the this view I S clicked. If This view was not * clickable, it becomes clickable. * * @paramL The callback that'll run * *@see#setClickable (Boolean)*/ Public voidSetonclicklistener (Onclicklistener l) {if(!isclickable ()) {setclickable (true); } Monclicklistener=l; } /*** Call this view
. setsubject ("Java mail test"); // TitleEmail. setcharset ("gb2312"); // sets charsetEmail. setmsg ("this is a test email sent by the Java program with an attachment. "); // Content// Embed the image and get the content IDURL;Url = new URL ("http://img.baidu.com/img/image/ilogob.gif ");String cid = Email. Embed (URL, "Baidu logo ");Email. sethtmlmsg ("Email. Send (); // sendSystem. Out. println ("email sen
There are two ways to create a new class that can have a thread running within it. one way is to extend the Thread class. the other is to extend any class and implement the Runnable interface. for the sake of authentication, extending Thread is the simplest approach and is initially used in this book. implementing the Runnable interface tends to work much better in the real world; this technique is introduced in Chapter 4, "Implementing Runnable Versus Extending Thread."
There are two ways to cr
For example, the following three packages are required for sending emails in Java.
Activation-1.1.jar,
Commons-email-1.1.jar,
Mail-1.4.jar
These three jar packages can be directly downloaded online.
Javamail 1.4.3Http://www.oracle.com/technetwork/java/index-138643.html
JavaBeans activation framework 1.1.1Http://www.oracle.com/technetwork/
A small example of how to convert a floating point to a Renminbi in java.
Copy codeThe Code is as follows:Import java. util. ArrayList;Import java. util. List;Public class RMBConverter2 implements IRMBConverter {Private static final String [] RMB _NUMBER = {"zero", "one", "two", "three", "Si", "Wu", "Lu ", "identifier"
Java programming example of recursive and non-recursive code with two distributions, two Recursion
The main content of this article is recursive and non-Recursive Implementation of the binary distribution of Java programming.
Source:
Exercise 27: return (1.1-p) * binomial (N-1, k, p) + p * binomial (N-1, k-1, k-1, p );How does the recursive formula calculate the
Java study note 7 (simple supermarket inventory management system example ),
With the previous knowledge, you can simply build a supermarket inventory management system:
Define a product category:
public class FruitItem { int ID; String name; double price; int number; double money;}
Then:
Import java. util. arrayList; import
The regular expression defines the link:Http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html#sumApplication Examples:
Count the number of words in a Java string
public class Nn {public static void Main (string[] args) {String str= "This is a process";System.out.println (Str.split ("\\s+"). length);}
Get all uppercase letters, lowercase letters, and numbers inside the
A simple example of Javascript and Java to obtain various form information
This article mainly introduces simple examples for Javascript and Java to obtain various form information. If you need some help, please refer to them.
We all know that multiple input forms are used when submitting the form. However, it is easy to use Document. getElementById to obtain ea
Xml is a special data storage format in plain text format. xml is often used for various data api interactions and data exchange before different scripts, let's take a look at a simple example of java reading xml files.
The XML file is as follows:
The Code is as follows:
Copy code
The java xml reading class is as follows:
{ return numbera + Numberb; }}SPI implementation class for the interface: DivisionoperationimplImport co.solinx.demo.api.ioperation;/** * Created by LX on 2015/3/8. */public class Divisionoperationimpl implements IOperation { @Override public int operation (int numbera, int Numberb) { return numbera/numberb; }}meta-inf/services files in the directory:File name: co.solinx.demo.api.IOperation, Content: Co.solinx.demo.spi.DivisionOperationImplMain class:import Co.solinx.d
1, keyboard input 5 Student information (name, language score, math results, English scores), according to the total score from high to low deposit text files. Code:public class Treesetdemo {public static void main (string[] args) throws ioexception{//Create TreeSet object, using the interface anonymous inner class Implement Comparator interface treesetConsole:Text file:2, the known s.txt file has such a string: "HCEXFGIJKAMDNOQRZSTUVWYBPL"Please write the program to read the data content, sorti
of them with your own needs to customize the application from *. Template method is a basic concept of the application framework, which is usually hidden behind the (framework) by invoking a set of methods of the base class (some methods you may have already overridden) to drive the application. An important feature of the Template Method is that it is defined in the base class and cannot be changed by (derived classes). Sometimes it is a private method, but in fact it is often declared final.
If the Java-jar xxx.jar command is executed in the terminal, Xxx.jar will also end up running when the terminal is closed, but if the nohup java-jar xxx.jar command is executed, the program will run in the background, and it is worth noting that The program console output is then transferred to the Nohup.out file.attached: nohup command Reference nohup commandPurpose: To run the command without hanging off.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.