`
happysalay
  • 浏览: 10737 次
  • 性别: Icon_minigender_1
  • 来自: 济南
最近访客 更多访客>>
社区版块
存档分类
最新评论

打印Class Path

    博客分类:
  • java
阅读更多

import java.io.IOException;

import java.net.URL;

import java.net.URLClassLoader;

 

import sun.misc.Launcher;

import sun.misc.URLClassPath;

 

public class Main {

 

public static void main(String[] args) throws IOException {

//Boot Class Path

URLClassPath urlsClassPath = Launcher.getBootstrapClassPath();

System.out.println("---Boot Class Path ClassLoader:" + Launcher.getLauncher()); //$NON-NLS-1$

URL[] rootClassPathUrls = urlsClassPath.getURLs();

for (Object object : rootClassPathUrls) {

System.out.println(((URL) object).toString());

}

//System Class Path

URLClassLoader classLoader = (URLClassLoader) ClassLoader.getSystemClassLoader();

System.out.println("---System Class Path ClassLoader:" + classLoader); //$NON-NLS-1$

 

URL[] systemClassPathUrls = classLoader.getURLs();

for (Object object : systemClassPathUrls) {

System.out.println(((URL) object).toString());

}

//Extend Class Path

classLoader = (URLClassLoader) classLoader.getParent();

System.out.println("---Extended Class Path ClassLoader:" + classLoader); //$NON-NLS-1$

 

URL[] extenedClassPathUrls = classLoader.getURLs();

for (Object object : extenedClassPathUrls) {

System.out.println(((URL) object).toString());

}

}

}

 

分享到:
评论

相关推荐

    Spring实战之使用ClassPathResource加载xml资源示例

    在Spring框架中,`ClassPathResource`是一个非常重要的类,用于加载类路径(classpath)下的资源文件,如XML配置文件。在实际开发中,我们经常需要从类路径中读取这些资源来初始化bean或其他配置。本示例将详细介绍...

    GetCurrentPath.rar_c#中getcurrentpath_getcurrentpa_getcurrentpath

    你可以通过打印这个变量的值来查看当前的工作目录: ```csharp Console.WriteLine("当前工作目录: " + currentPath); ``` 然而,有时候我们可能需要改变工作目录,比如在执行某些特定任务时需要切换到不同的目录。...

    javascript打印如何自定义纸张大小(代码)[借鉴].pdf

    <object id="WebBrowser" width="0" height="0" classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"> ``` 3. 使用 ExecWB 方法实现打印预览和设置 使用 WebBrowser 控件的 ExecWB 方法可以实现打印预览和设置...

    delphi_word打印

    在设计阶段,将OleContainer添加到表单上,并设置其ClassID属性为Word的应用程序对象的CLSID(通常是{000209FF-0000-0000-C000-000000000046})。这使得OleContainer可以创建并控制Word实例。 接着,我们需要编写...

    C# winfrom 数据打印

    public class PrintForm : Form { private PrintDocument printDoc = new PrintDocument(); public PrintForm() { printDoc.PrintPage += new PrintPageEventHandler(this.OnPrintPage); } // 打印事件处理 ...

    (转)Java jacob调用打印机打印word文档

    public class PrintWordDocument { public static void main(String[] args) { ActiveXComponent word = new ActiveXComponent("Word.Application"); Dispatch documents = Dispatch.get(word, "Documents")....

    winform 调用bartender打印

    ApplicationClass bartender = new ApplicationClass(); bartender.Visible = false; // 隐藏Bartender界面 // 加载模板 Document doc = bartender.Documents.Open("C:\\Path\\To\\Your\\Template.mbr"); // ...

    javascript 实现页面打印

    <OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=wb width=0> 打印" onclick="javascript:printit()"> 页面设置" onclick="javascript:printsetup();"> 打印预览" onclick="javascript:...

    浏览器打印经验总结[参考].pdf

    该样式,在浏览的时候可以正常显示,只是打印的时候不打印class为noprint的元素。 1.3 套打 如果用户已经有打印表格,只需要你打印数据内容上去,就是所谓的套打。你当然可以设计一个只有要打印的数据项的表格,...

    jQuery打印插件PrintArea

    <div class="printArea">这是要打印的内容 ``` ```javascript $.printArea(); ``` ### 3. 参数配置 `$.printArea()`方法接受一个对象作为参数,用于配置打印行为。以下是部分常用配置项: - `mode`: 可选值有"id...

    java打印pdf

    PDDocument document = PDDocument.load(new File("path_to_your_pdf_file.pdf")); // 获取默认的打印服务 PrinterJob job = PrinterJob.getPrinterJob(); job.setPrintService(job.defaultPrintService()); ...

    C#Winform打印超市小票.zip

    Image logo = Image.FromFile("path_to_logo.png"); e.Graphics.DrawImage(logo, logoX, logoY); ``` 最后,为了触发打印,我们需要调用`Print`方法: ```csharp printDocument.Print(); ``` 用户界面部分,我们...

    PDF打印DLL,支持彩色打印.rar

    PdfPrinter.Print("path_to_your_pdf.pdf", "YourPrinterName", true); ``` 在上述代码中,`PrintPDF`函数被调用,传递PDF文件路径、打印机名和是否使用彩色打印的标志。注意,这只是一个假设的函数签名,实际的DLL...

    web打印.doc

    public class PrintServlet extends HttpServlet { protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException, JRException { // Load ...

    C#打印操作实例--图片打印源码.rar

    public class PrintImageExample { public static void Main() { PrintDocument printDoc = new PrintDocument(); printDoc.PrintPage += new PrintPageEventHandler(PrintImage); if (printDoc....

    使用js代码来控制IE中的打印预览效果

    <input type="button" class="tab" value="打印" onclick="printTure();"> <input type="button" class="tab" value="打印预览" onclick="printpr();"> ...

    Python项目开发实战:快递单打印系统(案例教程实例课程).pdf

    class ShipmentEditor(QtWidgets.QMainWindow): def __init__(self): super().__init__() self.initUI() def initUI(self): # 添加文本框、下拉框等控件 self.name_input = QtWidgets.QLineEdit(self) self....

    C#实现打印

    在IT领域,尤其是在软件开发与项目实施中,打印功能往往是不可或缺的一部分,尤其对于那些需要将数据以物理形式呈现出来的应用场景。C#作为一种广泛使用的面向对象编程语言,提供了丰富的API和库来实现各种复杂的...

    Java实现打印功能.doc

    Image img = Toolkit.getDefaultToolkit().getImage("path/to/image.jpg"); g2d.drawImage(img, 100, 100, null); ``` #### 七、优化打印质量 为了提高打印质量,可以使用`Graphics2D`的一些高级特性,比如抗锯齿、...

    jacob打印机打印本地的excel和word

    本文将深入探讨如何利用Jacob库实现本地Excel和Word文档的打印功能。 首先,让我们理解Jacob的核心概念。Jacob库是Java和COM接口之间的桥梁,它使得开发者能够通过Java代码直接调用Windows操作系统中的COM组件,这...

Global site tag (gtag.js) - Google Analytics