Source Code

public JTable(Vector rowData, Vector columnNames) : JTable « Swing « Java Tutorial
58.4.public JTable(Vector rowData, Vector columnNames)import java.awt.BorderLayout;import java.util.Vector;import javax.swing.JFrame;import javax.swing.JScrollPane;import javax.swing.JTable;public class JTableCreatingByVector { public static void main(String args[]) { JFrame frame = new JFrame(); fr[ More ]
Selection Modes : JTable « Swing « Java Tutorial
The ListSelectionModel class provides constants for the different selection modes.The ListSelectionModel interface and DefaultListSelectionModel are used to describe the current set of rows and columns within the JTable component.They have three settings:MULTIPLE_INTERVAL_SELECTION (the default)SING[ More ]
Retrieve the value in cell (1,2) from the model : JTable « Swing « Java Tutorial
import javax.swing.JTable;public class Main { public static void main(String[] argv) throws Exception { int rows = 3; int cols = 3; JTable table = new JTable(rows, cols); Object o = table.getModel().getValueAt(1, 1); }} [ More ]
Batch_Converter
Batch_Converterimport ij.plugin.*;import java.awt.*;import java.io.*;import ij.*;import ij.io.*;import ij.process.*;import ij.gui.*;/*  Converts a folder of images in any format supported by ImageJ's File>Open command into TIFF, 8-bit TIFF, JPEG, GIF, PNG, PGM,BMP, FITS, Text Image, ZIP or Raw. The [ More ]
Convert colour JPEG to PGM format
Convert colour JPEG to PGM formatimport java.io.*; import javax.media.jai.*; import javax.imageio.ImageIO; public class ConvertSpeed { private static String inputFileName = "C:\\Program Files\\balloon.jpg"; private static String outputFileName = "C:\\Program Files\\balloon.pgm"; public static void m[ More ]
java pgm 2 jpeg/png
java pgm 2 jpeg/pngint[] myImage = getGreyscaleIntArray();BufferedImage im =newBufferedImage(width,height,BufferedImage.TYPE_BYTE_GRAY);WritableRaster raster = im.getRaster();for(int h=0;h        raster.setSample(w,h,0, myImage[h * width + w]);}}ByteArrayOutputStream myJpg =newByteArrayOutputStream([ More ]
How To Convert JPEG Image Into Byte Array Using Java Program?
The Java program given below converts a jpeg image into a byte array :import java.nio.file.Files;import java.io.File;import java.util.Arrays;import java.io.IOException;class ImageToByte{public static void main(String args[])throws IOException{File fi = new File("puppy.jpg");byte[] fileCont[ More ]
how to convert png to pgm image?
how to convert png to pgm image?i have created an image using java. it is in png format but i would like it to be in pgm format. anyone can help to edit my code (which fails to run)? thanks!view source print?01import java.awt.image.BufferedImage;02import java.io.File;03import javax.imageio.ImageIO;0[ More ]
convert-image-to-bytearray-2
convert-image-to-bytearray-2import java.awt.image.BufferedImage;import java.io.ByteArrayInputStream;import java.io.ByteArrayOutputStream;import java.io.File;import java.io.IOException;import javax.imageio.ImageIO;import com.sun.org.apache.xerces.internal.impl.dv.util.Base64;  public class SimpleConv[ More ]
convert-image-to-byte
convert-image-to-byteimport java.awt.Graphics2D;import java.awt.Image;import java.awt.image.BufferedImage;import java.io.ByteArrayInputStream;import java.io.ByteArrayOutputStream;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException; impor[ More ]
pgmtojpeg
pgm to jpeg codeimport java.awt.image.BufferedImage; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO; import com.sun.org.apache.xerces.internal.impl.dv.util.Base64; public clas[ More ]
HttpPostExample.java File
HttpPostExample.Java Filepublic class HttpPostExample extends Activity {TextView content;EditText fname, email, login, pass;String Name, Email, Login, Pass;/** Called when the activity is first created. */@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);se[ More ]
HttpGetAndroidExample.java File
HttpGetAndroidExample.java File   public class HttpGetAndroidExample extends Activity {                 TextView content;                 EditText fname,email,login,pass;             @Override             protected void onCreate(Bundle savedInstanceState) {                       supe[ More ]
Use MVC Pattern To Create Very Basic Shopping Cart - Android Example
Use MVC Pattern To Create Very Basic Shopping Cart - Android ExampleSimulator ScreenshotsAndroid Example Screenshot 4Login to download source code. Related ExamplesGlobal_Variable_Or_Application_Context_Variable_-_Android_Example    Global Variable Or Application Context Variable - Android ExampleIn[ More ]
DOMDocument::schemaValidate
DOMDocument::schemaValidate (PHP 5) DOMDocument::schemaValidate — Validates a document based on a schema Description public bool DOMDocument::schemaValidate ( string $filename [, int $flags ] ) Validates a document based on the given schema file. Parameters filename The [ More ]
Android HTTP Client: GET, POST, Download, Upload, Multipart Request
Android HTTP Client: GET, POST, Download, Upload, Multipart RequestHTTP ConnectionPost RequestDownload DataUpload DataMultipart RequestOften Android apps have to exchange information with a remote server. The easiest way is to use the HTTP protocol as base to transfer information. There are several [ More ]
HTTP Connection with Handler
23.1 HTTP Connection with HandlerIn this example, we download an image and text from the web.Let's preview the whole Java code first, HttpURLConncecitonA.java:package com.bogotobogo.httpconnecta;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.net.Ht[ More ]
Source Code magento_lib_Zend_InfoCard_Cipher_Pki_Adapter_Rsa.php _ Ritz Consultant
Source Code magento_lib_Zend_InfoCard_Cipher_Pki_Adapter_Rsa.php _ Ritz Consultant002./**003.* Zend Framework004.*005.* LICENSE006.*007.* This source file is subject to the new BSD license that is bundled008.* with this package in the file LICENSE.txt.009.* It is also available through the world-wid[ More ]
validate a textbox in vb.net
Validate A Textbox In Vb.NetYou can check the text string, i.e., textbox1.text, to make sure it has nothing besides alphabet characters in the .Leave event. This will catch an error when the user tabs to the next control, for example. You can do this using a regular expression (import System.Text.Re[ More ]
Convert PDF to SWF
convert pdf to swf. Installer available for Windows and Linux. http://www.swftools.org/download.html Here is some sample example of how to use swftools - http://www.quiss.org/swftools/pdf2swf_usage.html After conversion of pdf to swf you can use flash player to view in a webpage (http:[ More ]