- System.AppDomain.CurrentDomain.BaseDirectory
Specifier | Description | Examples |
y | One-digit year. If the year cannot be specified in one digit then two digits are used automatically. |
"7" "95" |
yy | Two-digit year with leading zeroes if required. | "07" |
yyyy | Full four-digit year. | "2007" |
g or gg | Indicator of Anno Domini (AD). | "A.D." |
M | One-digit month number. If the month cannot be specified in one digit then two digits are used automatically. |
"1" "12" |
MM | Two-digit month number with leading zeroes if required. | "01" |
MMM | Three letter month abbreviation. | "Jan" |
MMMM | Month name. | "January" |
d | One-digit day number. If the day cannot be specified in one digit then two digits are used automatically. |
"3" "31" |
dd | Two-digit day number with leading zeroes if required. | "03" |
ddd | Three letter day name abbreviation. | "Wed" |
dddd | Day name. | "Wednesday" |
h | One-digit hour using the twelve hour clock. If the hour cannot be specified in one digit then two digits are used automatically. |
"9" "12" |
hh | Two-digit hour using the twelve hour clock with leading zeroes if required. | "09" |
H | One-digit hour using the twenty four hour clock. If the hour cannot be specified in one digit then two digits are used automatically. |
"1" "21" |
HH | Two-digit hour using the twenty four hour clock with leading zeroes if required. | "09" |
t | Single letter indicator of AM or PM, generally for use with twelve hour clock values. |
"A" "P" |
tt | Two letter indicator of AM or PM, generally for use with twelve hour clock values. |
"AM" "PM" |
m | One-digit minute. If the minute cannot be specified in one digit then two digits are used automatically. |
"1" "15" |
mm | Two-digit minute with leading zeroes if required. | "01" |
s | One-digit second. If the second cannot be specified in one digit then two digits are used automatically. |
"1" "59" |
ss | Two-digit second with leading zeroes if required. | "01" |
f | Fraction of a second. Up to seven f's can be included to determine the number of decimal places to display. |
"0" "0000000" |
z | One-digit time zone offset indicating the difference in hours between local time and UTC time. If the offset cannot be specified in one digit then two digits are used automatically. |
"+6" "-1" |
zz | Two-digit time zone offset indicating the difference in hours between local time and UTC time with leading zeroes if required. | "+06" |
- BEGIN
- SET @sql = CONCAT('SELECT * FROM ', table_name, ' WHERE id = ', vID);
- PREPARE stmt FROM @sql;
- EXECUTE stmt;
- DEALLOCATE PREPARE stmt;
- END
- BEGIN
- PREPARE stmt1 FROM 'SELECT SQRT(POW(?,2) + POW(?,2)) AS hypotenuse';
- SET @a = 3;
- SET @b = 4;
- EXECUTE stmt1 USING @a, @b;
- DEALLOCATE PREPARE stmt1;
- END;
- import java.awt.AWTException;
- import java.awt.Dimension;
- import java.awt.Rectangle;
- import java.awt.Robot;
- import java.awt.Toolkit;
- import java.awt.image.BufferedImage;
- import java.io.File;
- import java.io.IOException;
- import javax.imageio.ImageIO;
- public class Case062 {
- /**
- * @param args
- * @throws AWTException
- * @throws IOException
- */
- public static void main(String[] args) throws AWTException, IOException {
- // TODO Auto-generated method stub
- Toolkit toolkit = Toolkit.getDefaultToolkit();
- Dimension screenSize = toolkit.getScreenSize();
- Rectangle screenRect = new Rectangle(screenSize);
- Robot robot = new Robot();
- BufferedImage image = robot.createScreenCapture(screenRect);
- ImageIO.write(image, "jpg", new File("capture.jpg"));
- }
- }