HTML 문서의 프로그래밍 방식 수정은 현대 디지털 워크플로의 필수적인 부분입니다. HTML 에서 텍스트를 편집하고, 외부 데이터를 사용하여 그래프를 삽입하고, 테이블을 수정합니다.
Java 라이브러리는 다른 소프트웨어에 의존하지 않는 HTML 편집을 위한 독립형 솔루션입니다. 전문 Java 개발자의 모든 가능한 요구 사항을 포함하여 상업적으로 사용할 준비가 되었습니다.
Java HTML 프로그래밍 방식 편집기는 개발자에게 프로그래밍 방식으로 HTML 을 편집할 수 있는 최신 API를 제공합니다. HTML 수정 기능을 소프트웨어에 빠르게 통합하십시오. 우리 라이브러리는 Java 에서 다양한 문서 형식의 수정을 지원합니다.
HTML 에서 프로그래밍 방식으로 Java 을 편집하는 작업은 HTML 문서 트리에서 요소를 수정하는 작업입니다. HTML 문서 요소 및 해당 속성과 상호 작용하기 위한 프로그래밍 모델인 'DOM'이라고도 합니다.
HTML 수정 기능은 고급 HTML 검색 기능과 분리할 수 없습니다. 높은 수준의 유연성을 위해 Java 라이브러리는 개발자에게 HTML Regex 기반 검색 기능을 제공합니다. 이 접근 방식은 HTML 파일의 텍스트 편집 가능성을 확장하여 동적 HTML 변환에 템플릿을 사용할 수 있도록 합니다.
가장 많이 요청된 기능 중 하나는 HTML 문서에서 테이블을 동적으로 생성하고 수정하는 것입니다. Java 라이브러리를 사용하면 테이블 작업이 매우 편리합니다. Java 을 사용하여 테이블 편집, 테이블 업데이트 및 테이블 텍스트 추출.
다음 예제에서는 Java 에서 Java HTML 문서를 수정하는 방법을 보여줍니다.
// Repository path: https://releases.aspose.com/java/repo/
// Maven, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>ver</version>
<classifier>jdk17</classifier>
</dependency>
복사
// Repository path: https://releases.aspose.com/java/repo/
// Gradle, where 'ver' - Aspose.Words version number, for example, 24.4.
compile(group: 'com.aspose', name: 'aspose-words', version: 'ver', classifier: 'jdk17')
복사
// Repository path: https://releases.aspose.com/java/repo/
// Ivy, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency org="com.aspose" name="aspose-words" rev="ver">
<artifact name="aspose-words" m:classifier="jdk17" ext="jar"/>
</dependency>
복사
// Repository path: https://releases.aspose.com/java/repo/
// Sbt, where 'ver' - Aspose.Words version number, for example, 24.4.
libraryDependencies += "com.aspose" % "aspose-words" % "ver"
복사
import com.aspose.words.*;
Document doc = new Document("Input.html");
DocumentBuilder builder = new DocumentBuilder(doc);
// 문서의 시작 부분에 텍스트를 삽입합니다.
builder.moveToDocumentStart();
builder.writeln("Morbi enim nunc faucibus a.");
doc.save("Output.html");
import com.aspose.words.*;
Document doc = new Document("Input.html");
DocumentBuilder builder = new DocumentBuilder(doc);
// 문서의 시작 부분에 표를 삽입합니다.
builder.moveToDocumentStart();
builder.startTable();
builder.insertCell();
builder.write("Row 1, cell 1.");
builder.insertCell();
builder.write("Row 1, cell 2.");
builder.endTable();
doc.save("Output.html");
import com.aspose.words.*;
Document doc = new Document("Input.html");
DocumentBuilder builder = new DocumentBuilder(doc);
// 문서의 시작 부분에 이미지를 삽입합니다.
builder.moveToDocumentStart();
builder.insertImage("Image.png");
doc.save("Output.html");
Java SE 7 및 최신 Java 버전이 지원됩니다. JRE 를 사용해야 하는 경우를 대비 Java SE 6 용 별도 패키지를 제공합니다.
Java Microsoft Windows, Linux, macOS, Android 및 iOS를 포함하여 JVM 구현된 모든 운영 체제에서 실행됩니다.
JogAmp JOGL, Harfbuzz 글꼴 엔진, Java Advanced Imaging JAI 와 같은 선택적 패키지 종속성에 대한 정보는 제품 설명서 를 참조하십시오.