Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 785355
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:51:52+00:00 2026-05-14T20:51:52+00:00

I have an XML file like this: <A> <B> <c>1<c/> <d>2<d/> <e>3<e/> </B> <B>

  • 0

I have an XML file like this:

<A>
  <B>
    <c>1<c/>
    <d>2<d/>
    <e>3<e/>
  </B>
  <B>
    <c>11<c/>
    <d>22<d/>
    <e>33<e/>
  </B>
</A>

Say I wanted to delete the second node. How would I do this?

I have not written code to do this yet. I’ve researched online but was not able to find just what I’m looking to do. My program lists the items in a jtable and it needs to let you select the item and hit a delete button.

I’ve implemented everything except the deletion, but there is too much and nothing really relevant.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T20:51:53+00:00Added an answer on May 14, 2026 at 8:51 pm

    You can find it with the XPath expression /A/B[2].

    XPath xPath = XPathFactory.newInstance().newXPath();
    XPathExpression compiledExp = xPath.compile("/A/B[2]");
    Node foundNode = (Node)compiledExp.evaluate(doc, XPathConstants.NODE);
    

    then use:

    foundNode.getParentNode().removeChild(foundNode);
    

    to delete it

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say that I have something like this in my web.xml file. <filter name=foo>
Let's say I have an XML file that looks like this: <a id=x> <b>
Let's say I have an xml file like this: <root> <a><b><c> w </c></b></a> <x><y><z>
Let's just say I have an XML file that looks like this: <?xml version=1.0
lets say i have an xml file path.xml that goes like this: <paths> <path
Say I have an XML file which looks like this: <?xml version=1.0 encoding=UTF-8?> <Project
Say I have an .xml file with a menu that looks like this. <?xml
Lets say i have some code to iterate through an XML file recursively like
I have a XML file like this <?xml version=1.0 encoding=utf-8?> <Survey Name=Aerosmith's Survey Id=S2
I have an xml file like this: <result> <customer> <id>1</id> <name>A</name> </customer> <customer> <id>2</id>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.