- 浏览: 30649 次
- 性别:
- 来自: 深圳
最新评论
-
tinayatest:
不错不错,我用java调用fortran生成的exe文件,中途 ...
JAVA关闭系统进程 -
yanlei:
String command = "taskkill ...
JAVA关闭系统进程 -
tomfish88:
改完表格内容不变·!
实现可编辑的表格TableViewer -
tomfish88:
goode
实现可编辑的表格TableViewer -
annewman:
谢谢了 呵呵
简单判断所选目录是否是tomcat目录
文章列表
最近公司要做一个在线视频点播系统,经过公司的决议,决定使用开源流媒体服务器red5进行搭建,现在red5 已经到了1.0.5,相关资料真是少之又少,而且还移除了自带集群功能,我在网上找了相关资料说用 terracotta进行集群,不知道各位大神们有没有集成成功过?跪求帮助…
1、struts 2.x 、spring 3.x 、hibernate 3.x 开源框架jar包准备
struts 2.x
struts2-core-2.1.6.jar
freemarker-2.3.13.jar
commons-logging.jar
ognl-2.6.11.jar
xwork-2.1.2.jar
commons-fileupload.jar
struts2-spring-plugin-2.0.11.1.jar
hibernate 3.x
Hbernate3.jar
antlr.jar
dom4j.jar
ehcahe.jar
j ...
Java程序修改代码
void UpdateMemmory()
{
try
{
RegistryKey root = Registry.LocalMachine;
RegistryKey software = root.OpenSubKey("SOFTWARE", true);
RegistryKey asf = s ...
以记事本方式,打开tomcat_home\bin\catalina.bat文件.
找到如下行set JAVA_OPTS=%JAVA_OPTS% %LOGGING_MANAGER%
在后面加上
-server -Xms512m -Xmx1024m -XX:MaxPermSize=256m -XX:PermSize=128m
<mx:Script> <![CDATA[ import mx.collections.ArrayCollection; import mx.events.CloseEvent; //两种数组使用的方式 //private var items:Array = [{label:"Flex",data:1},{label:"Ext",data:2},{label:"JBMP",data:3}]; [Bindable] private var items:ArrayCollection = n ...
Alert 控件 常用方法 show
参数列表
Alert.show(content,title,flags,parent,closeHandle,iconClass,defaultButtonFlag);
参数讲解
content:提示文本
title:提示标题
flags:出现的按钮
parent:显示的参照对象,一般都用this
package org.soyatec.windows.azure.jdt.ui;
import java.io.File;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt ...
public static boolean isValidJre(String path) {
File jre = new File(path);
if (!jre.exists())
return false;
File javaExe = StandardVMType.findJavaExecutable(jre);
return (javaExe != null && javaExe.exists());
}
public static boolean isValidTomcat(String path) {
Path installPath = new Path(path);
String id = "org.eclipse.jst.server.tomcat.60";
IStatus status = TomcatPlugin.getInstance()
.verifyInstallPathWithFolderCheck(installPath, id);
if (status.isOK())
return true;
retur ...
public class HtmlTooltip extends BrowserInformationControl{
public final static String APPEARANCE_JAVADOC_FONT= "org.eclipse.jdt.ui.javadocfont"; //$NON-NLS-1$
private static final String fgStyleSheet= "/* Font definitions */\n" + //$NON-NLS-1$
"body, h1, h2, h3, ...
public static void saveDataStorageOptions(String projName,DataStorageModel azureData) {
try {
IProject newProject = ResourcesPlugin.getWorkspace().getRoot()
.getProject(projName);
Properties prop = new Properties();
prop.put("data_storage.connection",azureData.getData ...
本人也是初次接触Flex,通过在网上找资料,和自己的总结,得出以下几点,和大家一起分享.
<一>Flex 的基础架构
<二>ActionScript
《ActionScript 3.0 语言和组件参考》是 Flash® Player 应用程序编程接口 (API) 的参考手册。 actionScript语言是学习Flex的基础之基础,它是flex/flash编程类使用的语言,想学好flex就必须从基础开始,从底层出发.
<三>学习最基本的Flex Components,主要包含以下控件:
1.常规类控件:A ...
package com.soyatec;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.eclipse.jface.layout.GridDataFactory;
import org.eclipse.jface.layout.GridLayoutFactory;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.CellE ...
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
public class StreamGrabber extends Thread {
private final InputStream stream;
private final List<String> hold ...
=====================================
====== 将下面这段代码保存为"清除系统垃圾进程.bat" =========
=====================================
@echo offecho 正在清除系统垃圾进程,请稍等......taskkill /F /im notepad.exe /im iexplorer.exeecho 清楚系统垃圾进程完成!
=====================================
将此文件放在"开始"->"所有 ...