0
http://developers.itextpdf.com上的iText7的示例使用諸如com.itextpdf.test.annotations.WrapToTest
(例如參見http://developers.itextpdf.com/content/itext-7-jump-start-tutorial/examples/chapter-1)的類。什麼是com.itextpdf.test。** - 用於什麼類?
/*
* This example is part of the iText 7 tutorial.
*/
package tutorial.chapter01;
***SNIP IMPORTS***
/**
* Simple Hello World example.
*/
@WrapToTest
public class C01E01_HelloWorld {
***SNIP CODE***
}
又見com.itextpdf.test.annotations.type.SampleTest
類的進口在http://developers.itextpdf.com/examples/actions-and-annotations/clone-adding-links-existing-documents。
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2016 iText Group NV
*/
/**
* This example was written by Bruno Lowagie in answer to the following question:
* http://stackoverflow.com/questions/26983703/itext-how-to-stamp-image-on-existing-pdf-and-create-an-anchor
*/
package com.itextpdf.samples.sandbox.annotations;
***SNIP IMPORTS***
@Category(SampleTest.class)
public class AddImageLink extends GenericTest {
***SNIP CODE***
}
用於什麼com.itextpdf.test.**
- 班?
歡迎SO。請看[旅遊](http://stackoverflow.com/tour)。您可能還想檢查[我可以詢問哪些主題](http://stackoverflow.com/help/on-topic)以及[如何提出一個好問題](http://stackoverflow.com/help/)如何提問)和[完美問題](http://codeblog.jonskeet.uk/2010/08/29/writing-the-perfect-question/),以及如何創建[最小,完整和可驗證示例](http://stackoverflow.com/help/mcve)。發佈您嘗試過的代碼以及收到的錯誤。儘可能具體,因爲它會導致更好的答案。 –
^我想說,他們的3個問題中的2個是Stack Overflow的實際可接受的問題。第三個問題,關於iText源代碼的下載位置,確實是一個非主題。 –