摘要: 首先来了解几个概念:类加载: 概念:虚拟机把描述类的数据从Class文件加载到内存,并对数据进行校验--转换解析--初始化,最终形成能被java虚拟机直接使用的java类型,就是jvm的类加载机制。 类加载包含了以下过程:加载--验证--准备--解析--初始化--使用--卸载类加载器: 首先,什么是类加载器?概念:把类加载阶段中"通过一个类的全限定名来获取描述此类的二进制流"这个动作放到jvm外部去实现,以便让应用程序自己决定如何去获取所需要的类。实现这个动作的代码模块被称为"类加载器"。分类:(针对hot spot而言,因为MRP,maxine的虚拟机 阅读全文
posted @ 2013-10-18 15:58 君子笑而不语 阅读(2091) 评论(0) 推荐(1) 编辑
摘要: 基于 OSGi 的面向服务的组件编程 基于 OSGi 的面向服务的组件编程 OSGi(Open Services Gateway Initiative,开放服务网关协议)提供了一个面向服务组件的编程模型,基于 OSGi 编程,具有模块化,标准化,面向服务,动态性,易复用,易扩展,易部署等诸多优点,本 阅读全文
posted @ 2013-10-12 12:02 君子笑而不语 阅读(1268) 评论(0) 推荐(0) 编辑
摘要: OSGi的一些支离破碎的知识 以下命令说明内容来自于Eclipse的OSGi框架Equinox。 Controlling the OSGi framework launch - start the OSGi Frameworkshutdown - shutdown the OSGi Framewor 阅读全文
posted @ 2013-10-11 16:51 君子笑而不语 阅读(723) 评论(0) 推荐(0) 编辑
摘要: 记录备用:package com.briup.common;//import required classespublic class MD5 { private static MD5 md5 = null; static final int S11 = 7; static final int S1... 阅读全文
posted @ 2013-10-10 13:35 君子笑而不语 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 记录一个备用:import java.io.*; public class MyEclipseGen { private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (http://www.loc.gov/copyright/legislation/dmca.pdf). Under section 1204 ... 阅读全文
posted @ 2013-10-10 13:32 君子笑而不语 阅读(283) 评论(0) 推荐(0) 编辑
摘要: import javafx.stage.*; import javafx.scene.*;import javafx.scene.paint.Color;import javafx.scene.control.*;import javafx.event.ActionEvent;import javafx.event.EventHandler;public class ModalDialog { Button btn; public ModalDialog(final Stage stg) { btn = new Button("OK"); final Stage stage 阅读全文
posted @ 2013-09-12 14:23 君子笑而不语 阅读(1108) 评论(0) 推荐(0) 编辑
摘要: 做个记录,备忘遇到一个问题,点击提交,红色标识的VBox大小不能改变。问题如图,代码如下点击后fxml结构简化代码:红色框体对应vboxMax 控制器中vboxMax.setPrefHeight(320); vbox.setPrefHeight(320); vbox2.setPrefHeight(140); vbox2.setVisible(true);原以为对最外一层(vboxMax)设置大小,就能变化,然后不是这样,原因是因为最外层的VBox可看作是一个窗口,用来盛放其他面板和组件。... 阅读全文
posted @ 2013-09-12 11:04 君子笑而不语 阅读(1439) 评论(0) 推荐(0) 编辑
摘要: 在学习javafx的过程中,不知道怎么出现一个弹窗,如,点击一个按钮出现一个修改信息的列表选项终于在javafx文档示例中发现了类似的东西,记录一下,备忘package demo9_button;import javafx.application.Application;import static javafx.application.Application.launch;import javafx.event.ActionEvent;import javafx.event.EventHandler;import javafx.scene.Scene;import javafx.scene.c 阅读全文
posted @ 2013-09-11 10:30 君子笑而不语 阅读(2905) 评论(0) 推荐(0) 编辑
摘要: 参考blog:https://blogs.oracle.com/javajungle/entry/monologfx_floss_javafx_dialogs_for 1 /* 2 * To change this template, choose Tools | Templates 3 * and open the template in the editor. 4 */ 5 package javafxapplication44; 6 7 import javafx.application.Application; 8 import javafx.application.Platf... 阅读全文
posted @ 2013-09-10 16:27 君子笑而不语 阅读(1409) 评论(0) 推荐(0) 编辑
摘要: package test; import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; import java.util.Scanner; public class NewClass{ ... 阅读全文
posted @ 2013-09-10 14:27 君子笑而不语 阅读(267) 评论(0) 推荐(0) 编辑