XLS
XML/RMI
XML over RMI JMS
JSP - Presentation Level
Session Java Beans - Business Logic Level
Entity Java Beans - Core Level (JDBC)
понедельник, 28 декабря 2009 г.
New Technologies
четверг, 17 декабря 2009 г.
Настройки java
Системные настройки
Environment Variables
JAVA_HOME = C:\Program Files\Java\jdk1.5.0
ANT_HOME = D:\apps\ant
PATH = %ANT_HOME%\bin;%JAVA_HOME%\bin;%PATH%
четверг, 3 декабря 2009 г.
Команды
chmod 755 <filename>
chmod +r <fileName> - право на чтение файла всем
chmod calculator
755 means read and execute access for everyone and also write access for the owner of the file. When you perform chmod 755 filename command you allow everyone to read and execute the file, owner is allowed to write to the file as well.
ls -l <имя файла> - даёт описание файла
среда, 2 декабря 2009 г.
Диаграммы
UML - Unified Modelling Language
Visual Case Tool - UML Tutorial
Unified Modeling Language (UML) Tutorial
понедельник, 30 ноября 2009 г.
четверг, 26 ноября 2009 г.
Sample Schemas
Oracle® Database
Sample Schemas
10g Release 2 (10.2)
B14198-01
Можно установить через dbca. Скрипт на схему лежит:
$ORACLE_HOME\demo\schema\human_resources
среда, 25 ноября 2009 г.
String
Вывод с параметрами
char x = 'x';
int cast = (int)x;
int codePoint = String.valueOf(x).codePointAt(0);
char again = (char)codePoint;
System.out.printf("x = %s cast = %d codePoint = %d again = %s%n",
x, cast, codePoint, again);
if ( s.equals ( "abc" ) ) echo ( "matched" );
Java Glossary | String