Is there anyway to convert full Html page to excel file - html

I would like to ask about converting html page to excel. I have searched on the google and stackoverflow but I could not find any library or fully worked code. I am meaning while saying "html page", not only html table but also "div" tags and other html tags (with visualization on the page). For this how can I do or is there any library to do this. I am using java on background and vue js for frontend.
Thank you in advance..

Related

Can we use HTML features in TinyTex (R Markdown)

everyone!
I'm VERY new to Rmarkdown, so this may be a silly question. I was able to use HTML tags when kniting html file. However, I'm wondering If I could also use them when kniting a pdf file? I'm a bit used to HTML, so it would really help me if I could keep on with the HTML tags for my pdf reports as well. This post helped me a bit, but not quite.
For Example, when kniting a html file it works just fine, I'd like to use the same labels with TinyTex...is it possible?
Thanks in advance
Maybe these packages and this IF may be useful, but, I still cannot use the proper html labels..
You can not use HTML in the Markdown document and then render it directly to PDF.
However you could render the document to html and later covert it to pdf manually from browser print method or automatically e.g. with ‘pagedown::chrome_print’ package.
When the rmarkdown output is a pdf_output then a markdown is translated to latex and then rendered to pdf. There is no process to translate a part of the text from html to what … sth understandable and similar in latex.

Reading information from txt and placing that info to html (web page)

I have a question about html and txt files... I'm kind of new in html coding so I was wondering and searching for some help.
This is what I would need, making some web page for my company and wondering is there a way to read txt file in html and put that read data to my page...
For an example txt file would have timetable (who works - in my company - at certain time) and html file would display that information on a web page (ideal would be with a picture perhaps)
I hope you understood the question and thankfully would give me an answer and help.
Please have a look at this
You'll need to do the file parsing with PHP of course.

how to export html form with canvas to pdf

I am trying to export an html page that contains html form and canvas to a pdf file (after onclick event (button)). I already been aware of wkhtmltopdf and PhantomJS but I think that it cannot be implemented as it should.
(the main problem is that I want to export the output offline, by covnerting the web app to android apk using the http://www.appsgeyser.com/)
To get your requirement, I hope you require to take pdf of web page.
if my understanding is correct, Please refer below link
http://www.hiqpdf.com/demo/ConvertHtmlToPdf.aspx
also see the existing post ITextSharp HTML to PDF?
Follow the Link of Zend_Pdf : http://framework.zend.com/manual/1.12/en/zend.pdf.html
You can also try jspdf : http://jspdf.com/
Or try to use javascript

Using IcePDF or PDFBox to generate HTML page from PDF

I want to use IcePDF or PDFBox to extract content from PDF. But I don't now the way to continue generating HTML web pages from the text and images extracted.
You can convert pdf to html with PDFBox. Try this link.
By adding -html as parameter when you extract text, you will get html of the pdf. But it will not contain any image, graphics and other details. It will be only the text extracted from the pdf in html format.
If you want to create the exact look and feel of the pdf, there is no single step method in PDFBox. In my knowledge no library provides this facility to create exact html of the pdf. But using PDFBox you can extract images, text and its details. Using these details you have to create a logic to produce the html. We have done a project to convert pdf to html for azzist.com. We have accomplished the conversion using PDFBox. In azzist we are converting the resume to html format. (Still some font issues are there).
Scribd, google, dropbox, zoho etc have accomplished this conversion in a better way. You can have a look at any of these sites to check how they have accomplished this. (You will not get the logic. You have to find it out).

Google Maps in JSP Document

Could anybody direct me to an example of JSP code displaying a google map? I've got some javascript that works but ideally I would like to feature a map in my pre existing JSP pages.
Many Thanks
Just put it in a HTML file. Once you got it to work, then rename .html to .jsp whenever you want to replace some static content by backend-controlled dynamic content with help of EL (those ${} things).
Do you now see the point of JSP?