A free, open dictionary-in-progress aiming to cover all words in all languages. Sister project of Wikipedia powered by MediaWiki.
Questions tagged [wiktionary]
67 questions
0
votes
1 answer
JWKTL - Can't connect to database
I'm trying to install the JWKTL library into a Java project.
JWKTL Getting started
Now I downloaded the dump file as described, and parsed it into a new directory.
My code is:
package main;
import java.io.File;
import java.util.List;
import…

Tobias Schäfer
- 1,330
- 2
- 17
- 35
0
votes
0 answers
How to load Wiktionary XML dump into Virtuoso?
I am new to Virtuoso and RDF.
I am trying to develop a n-triple store for Wiktionary dump in Virtuoso. The dump I downloaded from the Wikimedia site was in XML form.
Can anyone give me instructions or links that I can refer to load my Wiktionary…

Salamander
- 179
- 5
- 15
0
votes
1 answer
Getting exact synonym or antonyms using Wiktionary API
I am trying to retrieve synonym and antonyms using Wiktionary API. I am getting some response but it's a bit hazy. I have used this code:
$(document).ready(function() {
var page= $( this ).val();
…

Sariban D'Cl
- 2,197
- 2
- 28
- 42
0
votes
1 answer
List is printing empty
I have a List in Java whose isEmpty() method returns false for some entries. Also when i check size for those entries it is One but when i print the List it is empty [].Is it because of whitespaces that List size is coming out to be One My Code is…

Wasim Wani
- 555
- 2
- 11
- 24
0
votes
2 answers
How do I get Html Source of a Wiktionary page?
I am struggling withe Wiki Api. How can I simply get a pages html using the API. I know it is possible as I have done it before but I cannot remember how to do it.
Say I want the page source for the page http://en.wiktionary.org/wiki/bicycle how do…

KennyBartMan
- 940
- 9
- 21
0
votes
1 answer
Wiktionary : Get list of pages for a given word
I would like to have a list of pages existing in wiktionary for a given word.
The case : I search the definition of the word მამა (means dad) in georgian. There is no page for this word in the georgian wiktionary so I would like to have a list of…

user2207665
- 1
- 1
-1
votes
1 answer
How to extract data between two nodes in a wiki page with JSoup?
Document doc = getDocumen("https://pl.wiktionary.org/wiki/set#set_.28j.C4.99zyk_angielski.29");
Elements links = doc.select("dfn[style]"); - ??
for (Element link : links)
{
link.select("a [href]");
String linkText = link.text()
}
I want to get…

Waldemar
- 55
- 6