☆ 资源说明:☆ DevExpress .NET Components 14.2.3.0 压缩包内包含“安装程序”及“破解补丁”;
2023-02-14 10:54:53 263.96MB DevExpress Components
1
O2S.Components.PDFRender4NET.dll 4.5.1 只是去掉了水印,没有其他操作,仍然是试用版。
2023-01-20 10:04:12 944KB PDFRender NET pdf2image pdf2jpg
1
不用积分的,大家下载了都是为了学习嘛,呵呵,支持爱好学习的人!!!
****************************************************
JIDC提供了一种访问桌面组件的API其中JDK6.0就采纳了其中了一些,比如系统栏图标的SystemTray和SystemIcon,还有代表桌面的Desktop等等,可见这个API是挺不错的。由于网页浏览器的特殊性,标准的JDK并没有把它加入进来,但是我们一样可以下载它来使用这个功能。明显地,这个功能是用本地方法实现的,所以下载完以后,把jdic.dll放到我们的path目录中,比如system32文件夹下面,然后我们就可以使用它的功能从而增加我们的JAVA程序了。
例子代码如下:
/*
* Test1.java
*
* Created on 2007-10-2, 17:29:30
*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package test2;

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
import org.jdesktop.jdic.browser.IWebBrowser;
import org.jdesktop.jdic.browser.WebBrowser;
import org.jdesktop.jdic.browser.WebBrowserEvent;
import org.jdesktop.jdic.browser.WebBrowserListenerAdapter;

/**
*
* @author hadeslee
*/
public class Test1 extends JPanel implements ActionListener {

 private JTextField input;
 private JButton go;
 private IWebBrowser web;

 public Test1() {
  super(new BorderLayout());
  initWindow();
 }

 private void initWindow() {
  try {
   web = new WebBrowser();
   web.addWebBrowserListener(new MyListener());
   go = new JButton("转到");
   input = new JTextField();
   JPanel up = new JPanel(new BorderLayout());
   up.add(input, BorderLayout.CENTER);
   up.add(go, BorderLayout.EAST);
   this.add(up, BorderLayout.NORTH);
   this.add(web.asComponent(), BorderLayout.CENTER);
   input.addActionListener(this);
   go.addActionListener(this);
  } catch (Exception ex) {
   Logger.getLogger(Test1.class.getName()).log(Level.SEVERE, null, ex);
  }
  JFrame jf = new JFrame("JAVA浏览器");
  jf.add(this, BorderLayout.CENTER);
  jf.setSize(500, 300);
  jf.setLocationRelativeTo(null);
  jf.setVisible(true);
  jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 }

 public void actionPerformed(ActionEvent ae) {
  doOpen();
 }

 private void doOpen() {
  try {
   String text = input.getText();
   if (text == null || text.equals("")) {
    return;
   }
   if (!text.toLowerCase().startsWith("http://")) {
    text = "http://" + text;
   }
   web.setURL(new URL(text));
  } catch (MalformedURLException ex) {
   Logger.getLogger(Test1.class.getName()).log(Level.SEVERE, null, ex);
  }
 }

 public static void main(String[] args) {
  new Test1();
 }

 private class MyListener extends WebBrowserListenerAdapter {

  private MyListener() {}

  @Override
  public void documentCompleted(WebBrowserEvent arg0) {
   System.out.println("文档下载完。。。");
   web.executeScript("alert('文档下载完毕!')");
   // web.setContent("

Hello world!!

" +
   // "点我");
   // web.removeWebBrowserListener(this);
  }
 }
}
它比一般的别的实现好的地方就是,它可以很完全地和JAVA代码进行交互,包括浏览器事件的监听,浏览器内容的获取,以及自己调用浏览器来执行一段javasript,这些都是很强大并且很实用的功能。
****************************************************

2022-11-27 20:00:35 1.32MB java
1
Element eleme Axure Components Element eleme Axure Components Element eleme Axure Components
2022-11-19 17:12:07 531KB Axure Element AxureComponents
1
OPC Core Components Redistributable
2022-11-10 14:42:59 1.29MB opc
1
Responses to the comments.zip
2022-11-01 18:06:20 179KB components
1
ElementUI Axure组件库,快速画原型,产品经理必备,2.0最新版本
2022-11-01 14:05:02 573KB Axure ElementUI Axure组件库
1
Arikaim CMS html组件库 使用Tailwind CSS创建的Arikaim CMS html组件库 要求 安装 composer require arikaim/tailwind-components
2022-10-31 22:34:44 17KB HTML
1
Jakarta HttpComponents HTTPClient 。httpclient-4.3.5.jar
2022-10-26 02:31:40 577KB org apache http components
1
内有多个用VHDL实现的元件代码,计数器,频率计,状态机等等,相信一定会对你有帮助的
2022-09-19 14:00:41 4.47MB components_vhdl frequency_meter 频率计_vhdl